Files
frisoer-anwendung/nginx.conf
2021-06-12 09:42:49 +02:00

12 lines
272 B
Nginx Configuration File

server {
listen 81 default_server;
root /app;
index index.php index.html index.htm;
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}