8 lines
214 B
Text
8 lines
214 B
Text
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name example.com;
|
|
root /home/mastodon/live/public;
|
|
location /.well-known/acme-challenge/ { allow all; }
|
|
location / { return 301 https://$host$request_uri; }
|
|
}
|