• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

Resolved thelounge, reverse proxy

UweP

Regular Pleskian
Hi. I'm trying to set up thelounge, a web irc client on my server. i have it running and i can connect to mydomain:port to see the interface. i now wanna proxy it so it supports https etc.. what im tryin to do is the following on the nginx additional directives ont he vhost chat.mydomain.tld. but it doesnt seem to wanna work:

l
Code:
location / {
    proxy_pass http://127.0.0.1:9000/;
    proxy_http_version 1.1;
    proxy_set_header Connection "upgrade";
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header X-Forwarded-For $remote_addr;

    # by default nginx times out connections in one minute
    proxy_read_timeout 1d;
}

can someone help me and tell me, what i should set location to or how i could set these reverse proxy thins? it says / is already used or something. Thank you!!! :)

It says:
Invalid nginx configuration: nginx: [emerg] duplicate location "/" in /var/www/vhosts/system/chat.freakyness.de/conf/vhost_nginx.conf:1 nginx: configuration file /etc/nginx/nginx.conf test failed
 
Last edited:
well ive done it usin their apache vhost config, replacing /irc/ by / and disabling php etc. for that subdomain. thanks :D
 
Back
Top