18 lines
423 B
Plaintext
18 lines
423 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
|
|
server_name {{ kuma_host }}.{{ remote_domain }};
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
client_max_body_size 0;
|
|
|
|
location / {
|
|
include /config/nginx/resolver.conf;
|
|
proxy_pass http://{{ kuma_host }}.{{ aya01_host }}.{{ local_domain }};
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
}
|