mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
63 lines
1.3 KiB
Nginx Configuration File
63 lines
1.3 KiB
Nginx Configuration File
events {}
|
|
http {
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
server_name *.open-assistant.io open-assistant.io;
|
|
server_tokens off;
|
|
|
|
location /.well-known/acme-challenge/ {
|
|
root /var/www/certbot;
|
|
}
|
|
|
|
location / {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
|
|
server_name open-assistant.io;
|
|
|
|
ssl_certificate /etc/nginx/ssl/live/open-assistant.io/fullchain.pem;
|
|
ssl_certificate_key /etc/nginx/ssl/live/open-assistant.io/privkey.pem;
|
|
|
|
location / {
|
|
return 301 https://web.prod.open-assistant.io$request_uri;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
|
|
server_name web.prod.open-assistant.io;
|
|
|
|
ssl_certificate /etc/nginx/ssl/live/web.prod.open-assistant.io/fullchain.pem;
|
|
ssl_certificate_key /etc/nginx/ssl/live/web.prod.open-assistant.io/privkey.pem;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_pass http://127.0.0.1:3000;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
|
|
server_name backend.prod.open-assistant.io;
|
|
|
|
ssl_certificate /etc/nginx/ssl/live/backend.prod.open-assistant.io/fullchain.pem;
|
|
ssl_certificate_key /etc/nginx/ssl/live/backend.prod.open-assistant.io/privkey.pem;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_pass http://127.0.0.1:8080;
|
|
}
|
|
}
|
|
|
|
}
|