11 lines
347 B
Text
11 lines
347 B
Text
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
server_name upload.asxp.io;
|
|
|
|
location /content {
|
|
root /var/telegabber/content/.. ;
|
|
}
|
|
ssl_certificate /etc/letsencrypt/live/asxp.io/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/asxp.io/privkey.pem; # managed by Certbot
|
|
}
|