Skip to content

Instantly share code, notes, and snippets.

@YOUR1
Created December 9, 2016 17:01
Show Gist options
  • Save YOUR1/8a67db39a45336413823ec314baa50b3 to your computer and use it in GitHub Desktop.
Save YOUR1/8a67db39a45336413823ec314baa50b3 to your computer and use it in GitHub Desktop.
location /vshell2 {
root /usr/local;
## Set rewrites
rewrite ^/vshell2/(/)?$ /vshell2/frontend/index.html break;
}
location /vshell2/api {
root /usr/local;
## Set rewrites
rewrite ^/vshell2/(.*)$ /vshell2/api/index.php break;
## Enable PHP
fastcgi_pass unix:/var/run/php/php5.6-fpm.sock;
include fastcgi_params;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment