15 lines
425 B
Plaintext
15 lines
425 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
root /var/www/html;
|
|
index index.html index.htm index.nginx-openmamba.html;
|
|
server_name _;
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
#location ~ .php$ {
|
|
# include snippets/fastcgi-php.conf;
|
|
# fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
|
|
#}
|
|
}
|