Last active
March 29, 2019 23:01
-
-
Save kenichi/061ac32d592e540c0dd2440b53bdd747 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
location /example { | |
root /var/www/example/public; | |
try_files $uri @example; | |
} | |
location /_dusk { | |
root /var/www/app/example/public; | |
try_files $uri @example; | |
} | |
location @example { | |
fastcgi_pass example_php_fpm:9000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment