mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-06 08:16:32 +00:00
15 lines
273 B
Plaintext
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;
|
|
}
|
|
}
|