Files
chatgpt-ui/nginx.conf
2023-02-24 14:48:39 +08:00

24 lines
501 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /app;
index index.html;
}
location /api/
{
proxy_pass ${SERVER_DOMAIN};
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /admin/ {
proxy_pass ${SERVER_DOMAIN};
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}