diff options
author | marudor <marudor@marudor.de> | 2018-02-11 19:21:40 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-08-19 16:44:33 +0200 |
commit | a65d92f04e29f4cf278929649ec8bb265bf5aa9c (patch) | |
tree | c2ea3bd192121234866c05863a6411c3156681dc | |
parent | 85bf3ee580e80c495c9cd0819cddd03ef16047ed (diff) |
correctly config nginx
-rw-r--r-- | nginx.conf | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -21,13 +21,10 @@ http { root /var/www/html; location / { - try_files $uri $uri/index.php; + try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { - if (!-e $request_filename){ - rewrite ^(.*)$ /index.php break; - } fastcgi_pass engelsystem:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |