Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

no acces to www.myrompr.net #18

Hello,

i configured rompr with nginx following this turorial : https://fatg3erman.github.io/RompR/Recommended-Installation-on-Linux

but i have no access to rompr when i go to www.myrompr.net. i have only this displayed :

Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

here's my rompr conf :

server {

    listen 80 default_server;
    listen [::]:80 default_server;

    root /srv/http/rompr;
    index index.php index.html index.htm;

    server_name www.myrompr.net;

    client_max_body_size 256M;

    # This section can be copied into an existing default setup
    location / {
        allow all;
        index index.php;
        location ~ \.php {
                try_files $uri index.php =404;
                fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $request_filename;
                include /etc/nginx/fastcgi_params;
                fastcgi_read_timeout 1800;
        }
        error_page 404 = /404.php;
        try_files $uri $uri/ =404;
        location ~ /albumart/* {
                expires -1s;
        }
    }
}

i don't know what i am missing, any help would be appreciated.
thanks

  • replies 1
  • views 2.3K
  • likes 0
#2

You are seeing the default nginx page, which implies you have not updated the nginx default config correctly, or you have not symlinked your rompr config correctly, or you just forgot to restart nginx.