Created
February 11, 2012 22:32
-
-
Save sofasurfer/1804733 to your computer and use it in GitHub Desktop.
NGINX Redmine Host File
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
# NGINX Redmine Virtual Host Config | |
# @sofasurfer.org | |
server { | |
listen 80; | |
server_name *.myredmine.com; | |
location / { | |
proxy_pass http://127.0.0.1:3000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment