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