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

12 lines
121 B
Plaintext
Raw Normal View History

2017-10-02 11:07:27 +00:00
upstream hello {
server hello;
}
server {
listen 80;
location / {
proxy_pass http://hello;
}
2017-10-05 09:53:29 +00:00
}