-
Manuel Herrmann authoredManuel Herrmann authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
default.conf 407 B
server {
listen 80;
server_name default_name;
location / {
root /var/www/html;
index index.php index.html;
}
location ~ \.php$ {
root /var/www/html;
include fastcgi_params;
fastcgi_pass php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
}
location /passwd {
deny all;
}
location ~ /\.ht {
deny all;
}
}