Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Both Apache and OpenVPN are attempting to use TCP port 443. As that is the port that normal HTTPS traffic uses, you’ll want to change the port that OpenVPN listens on so you can continue to serve HTTPS with Apache.
In your OpenVPN server.conf change the protocol and port to:
proto udp
port 1194
If you need to use port 443 for your OpenVPN connection due to firewalling or other resaons, there is also a way to “share” the port. In your OpenVPN server.conf set:
proto tcp
port 443
port-share 127.0.0.1 4545
Then, in your Apache configuration change: <VirtualHost *:443> to <VirtualHost *:4545> Also change 443 to 4545 in /etc/apache2/ports.conf