Created
March 5, 2018 11:59
-
-
Save finagin/58cfe47416838cc3b22a0f1085cf98a8 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
| server { | |
| listen 80; | |
| server_name ~^(.+)\.dev$; | |
| set $path $1; | |
| if ($host ~ "([^\.]+)\.[^\.]+$") { | |
| set $path $1; | |
| } | |
| root /var/www/$path; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment