Your comments

In case it is needed, please find below my nginx default file configuration located

in /etc/nginx/sites-enabled/default for debian users...

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;





# Make site accessible from http://yourdomain/
# server_name yourdomain;





location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:2202;
}
}


Thanks Tom...

I can't wait to try out the next ubooquity release with Jetty..


I found the following link in one of your old post about this topic.... I will give it a try and do some load testing.


https://docs.google.com/document/d/12DBfDrBXaj3g7qj-TEDJ1-ubFQU6sA17rQ_cR2hXfZM/pub

Thanks Tom, I wonder if using apache reverse proxy would work.han

For example putting the following in httpd.conf


LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
RewriteEngine on
RewriteRule ^/ubooquity/(.*) http://localhost:2202/$1 [proxy]
RewriteRule ^/ubooquity http://localhost:8080 [proxy]
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1


Just a try, not quite sure it will work.