Files
website/content/en/examples/service/access/frontend.conf
T
Qiming ea6004bd4f Consolidate YAML files [part-12] (#9364)
* Consolidate YAML files [part-12]

Relocate YAML files referenced by the accessing application topic
and the rest of cluster administration.

* Adjust json shortcodes.
2018-07-03 23:19:23 -07:00

12 lines
121 B
Plaintext

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