Often on locked-down networks, only ports like 80 and 443 will be allowed out for security reasons, and running OpenVPN instances on these allowed ports can help you get out in situations where access may otherwise be restricted.
However there maybe an instance where you already have a webserver (eg: Apache, Nginx) running on port 80 or 443(SSL). Luckily OpenVPN has the port-share option which lets you share the OpenVPN port with another application, such as an HTTPS server.
The port-share option doesn't actually let you share the port since you cannot really make two applications listen/bind on the same port. It actually works like a port forwarder or a proxy. This option works by making your web server listen on a different port and then letting OpenVPN forward all HTTP/HTTPS connection to your webserver.
--port-share host portWhen run in TCP server mode, share the OpenVPN port with another application, such as an HTTPS server. If OpenVPN senses a connection to its port which is using a non-OpenVPN protocol, it will proxy the connection to the server at host:port. Currently only designed to work with HTTP/HTTPS, though it would be theoretically possible to extend to other protocols such as ssh.
First we need to make our webserver listen to a different port.
On Apache you need to change you configuration file by changing the listen line to: Listen 4545
If you are using Nginx change the listen line to: listen 192.168.0.1:4545;
proto tcp
port 443
port-share 127.0.0.1 4545