23 lines
588 B
Plaintext
23 lines
588 B
Plaintext
|
## Version 2023/02/05
|
||
|
# make sure that your code-server container is named code-server
|
||
|
# make sure that your dns has a cname set for code-server
|
||
|
|
||
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
|
||
|
server_name {{ code_host }}.{{ remote_domain }};
|
||
|
|
||
|
include /config/nginx/ssl.conf;
|
||
|
|
||
|
client_max_body_size 0;
|
||
|
|
||
|
location / {
|
||
|
include /config/nginx/proxy.conf;
|
||
|
include /config/nginx/resolver.conf;
|
||
|
proxy_pass http://{{aya01_ip}}:{{ code_port }};
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection "upgrade";
|
||
|
}
|
||
|
}
|