fix nginx config

This commit is contained in:
Mayel 2021-07-14 20:44:14 +02:00
parent 66a2ede98c
commit 088c84ba70
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
export NGINX_DEFAULT_CONF_VERSION=v5
export NGINX_DEFAULT_CONF_VERSION=v6
export PHP_UPLOADS_CONF_VERSION=v3
export ENTRYPOINT_CONF_VERSION=v2
export ENTRYPOINT_MAILRELAY_CONF_VERSION=v1

View File

@ -4,11 +4,12 @@ server {
listen [::]:80;
server_name localhost;
root /var/www/html;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /var/www/html;
index index.html index.htm index.php;
gzip_static on;
try_files $uri $uri/ $uri.html $uri.php index.php?$query_string /index.php?$query_string;
@ -32,7 +33,7 @@ server {
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
try_files $uri /index.php =404;
# try_files $uri /index.php =404;
fastcgi_pass {{ env "STACK_NAME" }}_app:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(/.+)$;