92 lines
2.3 KiB
Plaintext
92 lines
2.3 KiB
Plaintext
# /etc/nginx/sites-available/site.conf
|
|
|
|
server {
|
|
listen 80 default_server;
|
|
rewrite_log on;
|
|
access_log /var/log/nginx/mainsail-access.log;
|
|
error_log /var/log/nginx/mainsail-error.log debug;
|
|
|
|
# disable this section on smaller hardware like a pi zero
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_comp_level 4;
|
|
gzip_buffers 16 8k;
|
|
gzip_http_version 1.1;
|
|
gzip_types text/plain text/css text/xml text/javascript application/javascript application/x-javascript application/json application/xml;
|
|
|
|
index index.html;
|
|
server_name _;
|
|
|
|
# disable max upload size checks
|
|
client_max_body_size 0;
|
|
|
|
# disable proxy request buffering
|
|
proxy_request_buffering off;
|
|
|
|
include /etc/nginx/mainsail/proxy/*.conf;
|
|
|
|
location /webcam/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer1/;
|
|
}
|
|
|
|
location /webcam2/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer2/;
|
|
}
|
|
|
|
location /webcam3/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer3/;
|
|
}
|
|
|
|
location /webcam4/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer4/;
|
|
}
|
|
|
|
location /webcam5/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer5/;
|
|
}
|
|
|
|
location /webcam6/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer6/;
|
|
}
|
|
|
|
location /webcam7/ {
|
|
postpone_output 0;
|
|
proxy_buffering off;
|
|
proxy_ignore_headers X-Accel-Buffering;
|
|
access_log off;
|
|
error_log off;
|
|
proxy_pass http://mjpgstreamer7/;
|
|
}
|
|
} |