1
0
mirror of https://gitlab.com/MisterBiggs/hello-world-nginx.git synced 2025-07-28 17:11:25 +00:00
Files
hello-world-nginx/nginx.conf
Matthias Kadenbach 0263421192 initial
2014-07-09 18:10:41 +02:00

19 lines
226 B
Nginx Configuration File

daemon off;
pid /var/lib/nginx/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
index index.html;
server {
listen *:80;
location / {
root /www-data;
}
}
}