ansible-role-mastodon/files/nginx/letsencrypt.conf.j2

8 lines
250 B
Text
Raw Normal View History

2022-11-19 10:10:57 +01:00
# 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; }
}