vps/roles/nginx/templates/sites-enabled/clips.conf

13 lines
215 B
Text
Raw Normal View History

2024-07-26 15:55:33 +02:00
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;
}
}