1234567891011121314151617181920212223242526272829303132333435363738 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
- location / {
- root /usr/share/nginx/html;
- index index.html index.htm;
- try_files $uri $uri/ /index.html;
- }
- location /sys-api/ {
- proxy_set_header Host $http_host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_pass http://core-api-svc.default.svc.cluster.local:9100/;
-
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
|