My server runs NGINX. When visiting DOMAIN.org I can see my index page getting presented correctly. Visiting any other link such as DOMAIN.org/path1 results NGINX showing the standard 404 page.
My config: /etc/nginx/sites-enabled/default
server { listen 80 default_server; listen [::]:80 default_server; # root /var/www/html; root /var/www/clients/client0/web1/web; # Add index.php to the list if you are using PHP index index.html index.htm index.nginx-debian.html; server_name _; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; proxy_pass http://IP:8090; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } proxy_pass http://IP:8090; or proxy_pass http://IP:8090/; both lead to the same outcome... Anybody got any ideas why I only get to see the 404s? Thanks!