Files
kubernetes-course/configmap/reverseproxy.conf
Edward Viaene 5a86a3493c configmap demo
2016-11-23 12:56:00 +01:00

15 lines
273 B
Plaintext

server {
listen 80;
server_name localhost;
location / {
proxy_bind 127.0.0.1;
proxy_pass http://127.0.0.1:3000;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}