Page 1 of 1

Changes to HTTP/HTTPS ports on WAPT server v2.5 Debian 11

Published: August 14, 2024 - 11:46
by Maggle
Hello,

I have a WAPT server, version 2.5, installed on Debian 11.

To set up external access to the server from workstations via a shared network, I need to change the HTTP and HTTPS ports of my WAPT server.

I saw in the 2.5 documentation that this is possible on Windows by modifying the waptserver.ini file,

but I haven't found how to do it on Linux. I tried modifying configuration files, but without success.

Could you please tell me how to proceed?

Re: Changes to HTTP/HTTPS ports on WAPT server v2.5 Debian 11

Published: August 14, 2024 - 11:54
by sfonteneau
Good morning

In :

/opt/wapt/conf/waptserver.ini

Add :

Code: Select all

[options]
nginx_https  = 4443
nginx_http = 480
And relaunch a post-conference

This should work

Re: Changes to HTTP/HTTPS ports on WAPT server v2.5 Debian 11

Published: August 14, 2024 - 1:48 PM
by Maggle
Thank you for your quick reply.

Despite editing waptserver.ini and running postconf, I still cannot access my server (see attached image), whereas if I reset the ports to default (comment out the two added lines and run postconf) it works.

Re: Changes to HTTP/HTTPS ports on WAPT server v2.5 Debian 11

Published: August 14, 2024 - 2:02 PM
by sfonteneau
What does this give?

Code: Select all

netstat -pnat |grep nginx |grep "0.0.0.0"

Has nginx been restarted?

You wouldn't happen to have an additional firewall blocking access to the new port, would you?

try on the server:

Code: Select all

curl https://127.0.0.1:8443 --insecure