load-balancer / nginx.conf
Vadnir's picture
Update nginx.conf
b2cc563
Raw
History Blame Contribute Delete
311 Bytes
pid /tmp/nginx.pid;
events {
worker_connections 1024;
}
http {
upstream neptunop {
server neptunoia-neptuno-proxy.hf.space;
server mysteryman63453121-hope.hf.space;
}
server {
listen 8080;
location / {
proxy_pass http://neptunop;
}
}
}