Help with port-share
Posted: Sat Dec 01, 2012 1:10 pm
Hi,
I need help with what I think is a port-share issue.
This is my /use/local/openvpn_as/etc/config.json file
And this is my apache conf:
It's working if I go to https://domain.com:10443
But if I go to https://domain.com I just see the OpenVpn login screen.
What am I doing wrong?
I need help with what I think is a port-share issue.
This is my /use/local/openvpn_as/etc/config.json file
Code: Select all
{
"Default": {
"admin_ui.https.ip_address": "eth0",
"admin_ui.https.port": "943",
"auth.ldap.0.name": "My LDAP servers",
"auth.ldap.0.ssl_verify": "never",
"auth.ldap.0.timeout": "4",
"auth.ldap.0.use_ssl": "never",
"auth.module.type": "pam",
"auth.pam.0.service": "openvpnas",
"auth.radius.0.acct_enable": "false",
"auth.radius.0.name": "My Radius servers",
"cs.cws_proto_v2": "true",
"cs.https.ip_address": "eth0",
"cs.https.port": "943",
"cs.prof_sign_web": "true",
"host.name": "xx.xx.xx.xx",
"sa.initial_run_groups.0": "web_group",
"sa.initial_run_groups.1": "openvpn_group",
"vpn.client.routing.inter_client": "false",
"vpn.client.routing.reroute_dns": "true",
"vpn.client.routing.reroute_gw": "true",
"vpn.daemon.0.client.netmask_bits": "20",
"vpn.daemon.0.client.network": "5.5.0.0",
"vpn.daemon.0.listen.ip_address": "eth0",
"vpn.daemon.0.listen.port": "443",
"vpn.daemon.0.listen.protocol": "tcp",
"vpn.daemon.0.server.ip_address": "eth0",
"vpn.server.daemon.enable": "true",
"vpn.server.daemon.tcp.n_daemons": 1,
"vpn.server.daemon.tcp.port": "443",
"vpn.server.daemon.udp.n_daemons": 1,
"vpn.server.daemon.udp.port": "1194",
"vpn.server.group_pool.0": "5.5.16.0/20",
"vpn.server.port_share.enable": "true",
"vpn.server.port_share.ip_address": "127.0.0.1",
"vpn.server.port_share.port": "10443",
"vpn.server.port_share.service": "admin+client",
"vpn.server.routing.private_access": "nat",
"vpn.tls_refresh.do_reauth": "true",
"vpn.tls_refresh.interval": "360"
},
"_INTERNAL": {
"run_api.active_profile": "Default",
"webui.edit_profile": "Default"
}
}
And this is my apache conf:
Code: Select all
NameVirtualHost *:10443
Listen 10443
But if I go to https://domain.com I just see the OpenVpn login screen.
What am I doing wrong?