nginx (pronounced “engine-x”) is a lightweight, high-performance Web server/reverse proxy and e-mail (IMAP/POP3) proxy, licensed under a BSD-like license.

learn more… | top users | synonyms

2
votes
2answers
87 views

Why does modx-based site start using different domains for some content?

situation I have a modx site on a VPS with multiple domain and subdomain names. The modx site should use what I call the 'primary' domain name's 'primary' subdomain, ie www.intendedname.tld . The ...
0
votes
1answer
68 views

viewing values of all parameters of nginx for a particular request

Is it possible to see the values of all the parameters of nginx for a particular request like if i request for localhost/myfolder/page.php what are the values of $request_uri, $document_uri, ...
1
vote
0answers
152 views

Trouble with images in phppgAdmin on my Nginx VPS

this is my first time using Nginx or phppgAdmin, and after placing the phppgadmin folder into my public_html folder I find that the resources for the phppgadmin page are broken, images and css ...
1
vote
0answers
123 views

Permissions & File Structure w/ nginx & multiple sites

I am using nginx for the first time as a long time Apache user. I setup a Linode to test everything and to eventually port over my websites. Previously I had /home/user/www (wwwroot) I am looking ...
0
votes
0answers
37 views

nginx proxy_pass 404 error, don't understand why

trying to pass off all calls to /api to my webservice but I keep getting 404s with the following config. Calls to / return index.html as expected. Does anyone know why ? upstream backend{ server ...
0
votes
0answers
154 views

How to get rid of this webpage that has a redirect loop?

I'm having an RnD in my local machine. My local dev is working fine with Apache until I decided to add Nginx. The error is the following one: This webpage has a redirect loop Error 310 ...
0
votes
0answers
436 views

htaccess rewrite rules converted to nginx not working?

I used this tool and converted my rules to Nginx. However one rule doesn't seem to be working. My working .htaccess rules are: RewriteRule ^(.*)\.html $1\.php RewriteRule ^(.*)/settings\.html$ ...
0
votes
0answers
309 views

Nginx 404 not working with PHP?

I have a 404 file and it is working with nginx. However when I modify the 404 file to redirect the user it does not redirect. visiting http://site.com/404.php redirects the user. visiting ...