15 lines
268 B
Nginx Configuration File
Executable File
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;
|
|
}
|
|
}
|