Kubernetes/phpmyadmin/nginx.conf
Matthos Denys ccb971cf5f add kuber
2021-03-02 16:18:28 +03:00

14 lines
243 B
Nginx Configuration File
Executable File

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