Matthos Denys bdd57d0a05 its a live
2021-03-03 14:41:07 +03:00

15 lines
268 B
Nginx Configuration File
Executable File

server {
listen 0.0.0.0:5000;
server_name localhost;
root /var/www/localhost/htdocs/;
autoindex on;
index index.php;
location ~ \.php$ {
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_index index.php;
}
}