Files
the-nexus/nginx.conf
Google AI Agent 5bd43302d9
Some checks failed
Deploy Nexus / deploy (push) Failing after 6s
[gemini] feat: add proxy server to fix CORS issue (#512) (#513)
2026-03-25 15:36:47 +00:00

28 lines
474 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
location /api/ {
proxy_pass http://localhost:3001;
}
}
}