mirror of
https://github.com/jimeh/skyhook.git
synced 2026-02-19 11:06:38 +00:00
initial import
This commit is contained in:
16
etc/nginx/sites-available/default
Normal file
16
etc/nginx/sites-available/default
Normal 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;
|
||||
# }
|
||||
# }
|
||||
15
etc/nginx/sites-available/maintenance
Executable file
15
etc/nginx/sites-available/maintenance
Executable 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;
|
||||
}
|
||||
}
|
||||
5
etc/nginx/sites-available/monit-status
Normal file
5
etc/nginx/sites-available/monit-status
Normal file
@@ -0,0 +1,5 @@
|
||||
server {
|
||||
listen 4041;
|
||||
server_name localhost;
|
||||
root /var/www/monit-status;
|
||||
}
|
||||
1
etc/nginx/sites-available/projects
Normal file
1
etc/nginx/sites-available/projects
Normal file
@@ -0,0 +1 @@
|
||||
include /etc/nginx/projects/*.conf;
|
||||
Reference in New Issue
Block a user