Files
SystemX.Web/Projects/VPKI/VPKI/Config/nginx.conf
2025-04-24 15:42:47 +09:00

16 lines
202 B
Nginx Configuration File

events {
worker_connections 1000;
}
http {
upstream vpki.web.api {
server vpki.web.api:5555;
}
server {
listen 80;
location / {
proxy_pass https://vpki.web.api/;
}
}
}