linklogger/nginx.conf
2024-11-11 23:57:44 -06:00

24 lines
588 B
Nginx Configuration File

server {
listen 5000;
# Serve React static files
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
# Proxy API requests to FastAPI
location /api/ {
proxy_pass http://localhost:5252;
set_real_ip_from 0.0.0.0/0;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
}
# Proxy short link requests to FastAPI
location /c/ {
proxy_pass http://localhost:5252;
set_real_ip_from 0.0.0.0/0;
real_ip_header X-Forwarded-For;
real_ip_recursive on;
}
}