initial commit

This commit is contained in:
Victor Westerlund 2024-10-25 15:05:17 +02:00
commit a08c903608
10 changed files with 92 additions and 0 deletions

11
sites-available/8000 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name vlw.se www.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8000;
}
}

11
sites-available/8001 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name api.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8001;
}
}

11
sites-available/8002 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name vegvisir.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8002;
}
}

11
sites-available/8003 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name reflect.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8003;
}
}

11
sites-available/8004 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name git.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8004;
}
}

11
sites-available/8005 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name rss.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8005;
}
}

11
sites-available/8006 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name webdav.vlw.se;
include snippets/vlw.se-ssl;
location / {
proxy_pass http://localhost:8006;
}
}

11
sites-available/8007 Normal file
View file

@ -0,0 +1,11 @@
server {
listen 443 ssl;
server_name social.suesity.online;
include snippets/suesity.online-ssl;
location / {
proxy_pass http://localhost:8007;
}
}

View file

@ -0,0 +1,2 @@
ssl_certificate /etc/letsencrypt/live/suesity.online/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/suesity.online/privkey.pem;

2
snippets/vlw.se-ssl Normal file
View file

@ -0,0 +1,2 @@
ssl_certificate /etc/letsencrypt/live/vlw.se/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/vlw.se/privkey.pem;