16 lines
336 B
Plaintext
16 lines
336 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name {{ zoneminder_host }}.{{ backup_domain }};
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
client_max_body_size 0;
|
|
location / {
|
|
include /config/nginx/resolver.conf;
|
|
proxy_pass http://{{ zoneminder_host }}.{{ aya01_host }}.{{ local_domain }};
|
|
|
|
}
|
|
}
|