blob: 738230bfcee545adcb7b25f09b2fedc4549f2229 [file] [log] [blame]
server {
listen 8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /print {
proxy_pass http://printservant.printservant.svc.cluster.local:3199;
}
}