Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
server {
    listen 8081 default_server;
    listen [::]:8081 default_server;

    location /qrcode/check {
		proxy_pass http://127.0.0.1:4615;
    }

    location ~* ^/static/.*$ {
		proxy_pass http://127.0.0.1:4615;
    }

    location ~* ^/js/.*$ {
		proxy_pass http://127.0.0.1:4615;
    }

    location ~* ^/img/.*$ {
		proxy_pass http://127.0.0.1:4615;
    }

    location /api/microFrontend/getList {
		proxy_pass http://127.0.0.1:4615;
    }

    location /api/reactRouting/getList {
		proxy_pass http://127.0.0.1:4615;
    }

    location /api/security/getSession {
		proxy_pass http://127.0.0.1:4615default_type application/json;
		return 401 '{ "exception": { "loginTypeList": [] } }';
    }

      location /stamp/api/resource {
		proxy_pass http://127.0.0.1:4615;
    }

    location ~* ^/stamp/api/qrcode/check/.*$ {
		proxy_pass http://127.0.0.1:4615;
    }
}

...