19 lines
371 B
Plaintext
19 lines
371 B
Plaintext
server {
|
|
listen 83;
|
|
root /home/ijl/;
|
|
index index.php index.html index.htm index.nginx-debian.html;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
include fastcgi-php.conf;
|
|
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
} |