initial import

This commit is contained in:
2009-12-10 20:45:56 +02:00
commit 14f518ce91
44 changed files with 1867 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# server {
# listen 80 default;
# server_name _;
# access_log /var/log/nginx/localhost.access.log;
#
# server_name_in_redirect off;
#
# location / {
# index index.html index.htm;
# root /var/www/default;
# }
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# root /var/www/default;
# }
# }

View File

@@ -0,0 +1,15 @@
server {
listen 80 default;
server_name _;
server_name_in_redirect off;
location / {
index index.html index.htm;
root /var/www/maintenance/htdocs;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/maintenance/htdocs;
}
}

View File

@@ -0,0 +1,5 @@
server {
listen 4041;
server_name localhost;
root /var/www/monit-status;
}

View File

@@ -0,0 +1 @@
include /etc/nginx/projects/*.conf;