Add this to the bottom of your nginx.conf file, put in your ip and port for openvpn     stream {     log_format basic '$remote_addr [$time_local] '                  '$protocol $status $bytes_sent $bytes_received '                  '$session_time';     access_log /config/log/nginx/streamaccess.log basic;     error_log /config/log/nginx/streamerror.log;     server {         listen 80;         proxy_pass serverip:port;     } }