Here's an example of one I use to run my own `godoc` server:
<VirtualHost *:80> ServerAdmin admin@burntsushi.net ServerName godoc.burntsushi.net ProxyPreserveHost On ProxyPass / http://burntsushi.net:8080/ ProxyPassReverse / http://burntsushi.net:8080/ </VirtualHost>
I might try that before dipping my toes into Nginx
Here's an example of one I use to run my own `godoc` server: