Adding bookstack config.

This commit is contained in:
Colin Diem
2022-02-21 18:06:04 -05:00
parent f16062a5df
commit fb19b27552

View File

@@ -134,6 +134,25 @@ server {
error_log /var/log/nginx/foundry-error.log error;
}
# Bookstack config
server {
listen 80;
listen 443;
server_name wiki.colindiem.com;
location / {
include /etc/nginx/includes/proxy.conf;
proxy_pass http://192.168.1.9:2665;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Conntection "Upgrade";
}
access_log /var/log/nginx/wikiaccess.log combined;
error_log /var/log/nginx/wiki-error.log error;
}
# Default
server {
listen 80 default_server;