35 lines
817 B
Plaintext
35 lines
817 B
Plaintext
# sojorn.net - Frontend
|
|
server {
|
|
server_name sojorn.net www.sojorn.net;
|
|
root /var/www/sojorn;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
# Certbot will add SSL configuration here
|
|
listen 80;
|
|
}
|
|
|
|
# api.sojorn.net - Backend
|
|
server {
|
|
server_name api.sojorn.net;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8080;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
# WebSocket support
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
|
|
# Certbot will add SSL configuration here
|
|
listen 80;
|
|
}
|