Files
anubis-mirror/test/nginx/conf.d/http.conf
2025-04-28 17:52:23 -04:00

10 lines
217 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name nginx.local.cetacean.club;
location / {
proxy_pass http://anubis:3000;
include snippets/proxy_params;
}
}