Created
July 27, 2015 14:04
-
-
Save mavelar/47f6df9941c7148a2e31 to your computer and use it in GitHub Desktop.
Server configuration sample using railo.conf
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
| # | |
| # SERVER / VIRTUAL HOST | |
| # Sample using railo.conf | |
| # | |
| # SERVER INSTANCE / VIRTUAL HOST | |
| server { | |
| listen 80; | |
| server_name yourdomain.tld; | |
| root "/your/webroot/path"; | |
| index index.cfm; | |
| # You can insert here any directive or configuration that you need to use for nignx. | |
| # RAILO CONNECTOR | |
| include railo.conf; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment