Kubernetes/srcs/wp/nginx.conf
Matthos Denys 38c35f3cf1 add wp
2021-03-07 01:13:44 +03:00

15 lines
268 B
Nginx Configuration File
Executable File

server {
listen 0.0.0.0:5050;
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;
}
}