12 lines
324 B
Text
12 lines
324 B
Text
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name upload.asxp.io www.upload.asxp.io;
|
|
|
|
location /content {
|
|
root /var/telegabber/content/.. ;
|
|
}
|
|
|
|
ssl_certificate /etc/letsencrypt/live/asxp.io/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/asxp.io/privkey.pem;
|
|
}
|