Created
October 6, 2011 09:25
-
-
Save alanbriolat/1266944 to your computer and use it in GitHub Desktop.
nginx configuration for redmine
This file contains 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
server { | |
listen 80; | |
server_name projects.hexi.co redmine.codescape.net; | |
root /home/alan/www/redmine.codescape.net/public; | |
include global/restrictions.conf; | |
location / { | |
try_files $uri @redmine_fcgi; | |
} | |
location @redmine_fcgi { | |
include fastcgi_params; | |
fastcgi_pass unix:/var/run/supervisor/redmine.sock; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment