Created
June 29, 2011 15:15
-
-
Save iosadchiy/1054051 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
# /usr/local/nginx/conf/rails-vhosts/kdcuk.co.uk.conf | |
server { | |
listen 212.110.170.198:80; | |
server_name kdcuk.co.uk; | |
root /home/kdcuk/domains/kdcuk.co.uk/current/public; # <--- be sure to point to 'public'! | |
passenger_enabled on; | |
rack_env production; | |
} | |
# /usr/local/nginx/conf/rails-vhosts/staging.kdcuk.co.uk.conf | |
server { | |
listen 212.110.170.198:80; | |
server_name staging.kdcuk.co.uk; | |
root /home/kdcuk/domains/staging.kdcuk.co.uk/current/public; # <--- be sure to point to 'public'! | |
passenger_enabled on; | |
rack_env production; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment