Guest User

Untitled

a guest
Jan 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. ├── api
  2. │   └── public
  3. │ └── rest
  4. ├── app.yaml
  5. ├── composer.json
  6. └── public
  7.    ├── app1
  8.    └── app2
  9.  
  10. runtime: php
  11. env: flex
  12.  
  13. runtime_config:
  14. document_root: public
  15. enable_stackdriver_integration: true
  16.  
  17. server {
  18. location ^~ /api/ {
  19. alias /api/public/;
  20. }
  21.  
  22. location ^~ /api/rest/ {
  23. try_files $uri /routes.php;
  24. }
  25. }
Add Comment
Please, Sign In to add comment