12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
|
server {
|
||
|
listen 443 ssl;
|
||
|
server_name PLACEHOLDER;
|
||
|
|
||
|
location / {
|
||
|
proxy_set_header Connection "upgrade";
|
||
|
|
||
|
resolver 127.0.0.11;
|
||
|
proxy_pass http://portainer_app_1:9000;
|
||
|
}
|
||
|
}
|