fix endpoint in nginx config

This commit is contained in:
Elizabeth Hunt 2025-01-02 17:06:06 -08:00
parent 8e42029d13
commit efe5814a6a
Signed by: simponic
GPG Key ID: 2909B9A7FF6213EE
3 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ function add_nginx_config() {
echo "server {
listen 443 ssl;
server_name headscale.simponic.xyz;
server_name $endpoint;
ssl_certificate /etc/letsencrypt/live/$endpoint/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/$endpoint/privkey.pem;

View File

@ -1,6 +1,6 @@
server {
listen 443 ssl;
server_name headscale.simponic.xyz;
server_name phoneof.simponic.xyz;
ssl_certificate /etc/letsencrypt/live/phoneof.simponic.xyz/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/phoneof.simponic.xyz/privkey.pem;

View File

@ -1,6 +1,6 @@
server {
listen 443 ssl;
server_name headscale.simponic.xyz;
server_name something.simponic.xyz;
ssl_certificate /etc/letsencrypt/live/something.simponic.xyz/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/something.simponic.xyz/privkey.pem;