1
0
mirror of https://gitlab.com/MisterBiggs/hello-world-nginx.git synced 2025-07-28 17:11:25 +00:00
This commit is contained in:
Matthias Kadenbach
2014-07-09 18:10:41 +02:00
parent 94fe36a074
commit 0263421192
4 changed files with 33 additions and 0 deletions

19
nginx.conf Normal file
View File

@@ -0,0 +1,19 @@
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;
}
}
}