guides/self_hosting/services/examplereverseproxy.conf
2023-09-21 23:05:55 -06:00

12 lines
134 B
Text

server {
listen 80;
listen [::]:80;
server_name example.domain.xyz;
location / {
proxy_pass http://localhost:8080/;
}
}