简体   繁体   中英

Deploy Udash demo app to NGINX

如何在SBT之外部署Udash框架演示,并在NGINX下运行它?

I know it is lame, but I am able to run under NGINX with this line:

nohup sbt -Djline.terminal=jline.UnsupportedTerminal run &

and these location mappings:

location /notifications/ {
    proxy_pass       http://127.0.0.1:12345;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
}

location /atm/ {
    proxy_pass       http://127.0.0.1:8080;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
}

location /frontend/ {
    proxy_pass       http://127.0.0.1:12345;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
}

location / {
    proxy_pass       http://0.0.0.0:8080;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM