This commit is contained in:
2021-05-30 19:40:01 +03:00
parent 5d1bdda693
commit 6507960a4d
4 changed files with 144 additions and 175 deletions
+19
View File
@@ -0,0 +1,19 @@
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;
}
}