diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-27 23:41:11 -0400 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-04-27 23:41:11 -0400 |
commit | 9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b (patch) | |
tree | 524479f5d809b1b8fd29f75d7a732be8567bc2a1 /roles/webservers/files/levi/http.party.simponic.xyz.conf | |
parent | f9d62cc8a792b7b1a2c52a7d8102895473b3c72a (diff) | |
download | oldinfra-9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b.tar.gz oldinfra-9ac6be27c5a2e32fe3770590283cfc6b1b7dfe8b.zip |
borg
Diffstat (limited to 'roles/webservers/files/levi/http.party.simponic.xyz.conf')
-rw-r--r-- | roles/webservers/files/levi/http.party.simponic.xyz.conf | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/webservers/files/levi/http.party.simponic.xyz.conf b/roles/webservers/files/levi/http.party.simponic.xyz.conf new file mode 100644 index 0000000..0bbed95 --- /dev/null +++ b/roles/webservers/files/levi/http.party.simponic.xyz.conf @@ -0,0 +1,13 @@ +server { + listen 80; + server_name party.simponic.xyz; + + location /.well-known/acme-challenge { + root /var/www/letsencrypt; + try_files $uri $uri/ =404; + } + + location / { + rewrite ^ https://party.simponic.xyz$request_uri? permanent; + } +} |