Start openlitespeed and listen on Ipv6

#1
Hi,
I have a NAT VPS and I want to run openlitespeed server. The thing is that this NAT VPS has Ipv6 and everything went good the sad part is that I cannot login
to the admin panel since by default openlitespeed listen on Ipv4 only. Although it can change to Ipv6 by changing the listener.

The sad part is that I cannot login to the admin panel and I don't know where to change the config manually to make the openlitespeed run on Ipv6 when I start the service and still I cannot find it.

Can someone point me to the right direction here?
I need help.
 

Pong

Administrator
#2
The admin configuration should be at /usr/local/lsws/admin/conf/admin_config.conf

You will find ipv6 admin listner:
Code:
listener adminListener {
  address                 *:7080
  secure                  1
  keyFile                 $SERVER_ROOT/admin/conf/webadmin.key
  certFile                $SERVER_ROOT/admin/conf/webadmin.crt
  clientVerify            0
}
You can add additional ipv6 related settings under that:

Code:
listener ipv6 {
  address                 [ANY]:7080
  secure                  1
  keyFile                 $SERVER_ROOT/admin/conf/webadmin.key
  certFile                $SERVER_ROOT/admin/conf/webadmin.crt
  clientVerify            0
}
 
Top