12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- worker_processes 1;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- sendfile on;
-
- keepalive_timeout 65;
-
-
-
-
- server {
- listen 80;
- server_name localhost;
-
- charset utf-8;
-
-
-
- location /rest/diagnosis/ {
- proxy_pass http://diagnosis:8080/;
-
-
- }
- location / {
- root /usr/share/nginx/html;
- index index.html;
- }
- }
- }
|