Created
October 19, 2016 16:27
-
-
Save bcruddy/1b887c20c780dbf76a047021bb05e344 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ServerName [app-name].[tld] | |
ServerAlias www.[app-name].[tld] | |
ServerAdmin [email protected] | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
<Location /> | |
ProxyPass http://localhost:3000/ | |
ProxyPassReverse http://localhost:3000/ | |
Order allow,deny | |
Allow from all | |
</Location> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment