website/content/en/examples/service/access/frontend.conf

12 lines
121 B
Plaintext

upstream hello {
server hello;
}
server {
listen 80;
location / {
proxy_pass http://hello;
}
}