badping_nagios_better/docker/nginx_default.conf

18 строки
436 B
Plaintext
Исходник Постоянная ссылка Обычный вид История

2019-11-04 22:14:53 +00:00
server {
listen 80;
index index.php;
root /app/public;
location / {
try_files $uri /index.php?$args;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass app:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}