added https parts site, video site, fixed modsecurity
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
upstream shinobi {
|
||||
server 127.0.0.1:8085;
|
||||
}
|
||||
|
||||
server {
|
||||
modsecurity on;
|
||||
modsecurity_rules_file {{ nginx_path }}/modsec_includes.conf;
|
||||
|
||||
listen 80;
|
||||
server_name {{ video_server_name }};
|
||||
|
||||
location / {
|
||||
allow 192.168.1.0/24;
|
||||
allow 127.0.0.1;
|
||||
deny all;
|
||||
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $connection_upgrade;
|
||||
|
||||
proxy_buffering off;
|
||||
proxy_pass http://shinobi;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user