Initial commit

This commit is contained in:
2018-09-21 21:15:19 +02:00
commit 701f0b7fdd
14 changed files with 70 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
server {
listen 80;
server_name localhost;
access_log /log/access.log combined;
error_log /log/error.log error;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}