8 lines
250 B
Text
8 lines
250 B
Text
|
# This starts a simple nginx for the letsencrypt acme challenge
|
||
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
server_name {{ mastodon_host }};
|
||
|
root {{ mastodon_home }}/{{ mastodon_path }}/public;
|
||
|
location /.well-known/acme-challenge/ { allow all; }
|
||
|
}
|