wayne1191

joined 10 months ago
 

Hello,

I am running 3 TeamSpeak-Server on Proxmox-Host. I opened Port 9987, 30033 and 41144 for my first TeamSpeak-Server.

I have some (Sub)Domains pointing to my home-network. I just want to get connected by defined Subdomains.

E.G.

Ts1.mydomain.com -> 1st ts-server

Ts2.mydomain.com -> 2nd ts-server

Ts3.mydomain.com -> 3rd ts-server

mydomain.com -> blocked

otherdomain.com -> blocked

How do I do that?

Current tsdns-Entries:

ts1.mydomain.com=IP1:$Port

ts2.mydomain.com=IP2:$Port

*=NORESPONSE

It works fine except that not defined domains don’t get blocked.

 

Hello, I installed Apache Guacamole using this script: https://github.com/MysticRyuujin/guac-install

I am using nginx as a reverse proxy to forward to the guacamole host... Nginx conf (redirect to 443 is set in default conf):

server { listen 443 ssl; server_name vm.domain.com;

ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem;

location / {
proxy_pass http://IP-ADDRESS:8080/guacamole;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
access_log off;

} }

If I open “vm.domain.com” it shows me the nginx welcome page. If I open “vm.domain.com/guacamole” it shows me the guacamole page, but strange field-names (never seen this before...). When I open it by using the local IP, everything is fine.

So how do I change the tomcat9 default path, that I don't have to use "vm.domain.com/guacamole" just "vm.domain.com" (also with local ip)? And how do I get it shown right?