13 lines
215 B
Text
13 lines
215 B
Text
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
|
||
|
server_name clips.{{ domain }};
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:{{ ports['fireshare'] }};
|
||
|
|
||
|
client_max_body_size 500M;
|
||
|
}
|
||
|
}
|