Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. dev_appserver.py --log_level=debug app.yaml --php_executable_path=/usr/local/bin/php
  2.  
  3. The url "/" does not match any handlers.
  4.  
  5. # App Engine runtime configuration
  6. runtime: php72
  7.  
  8. # Defaults to "serve index.php" and "serve public/index.php". Can be used to
  9. # serve a custom PHP front controller (e.g. "serve backend/index.php") or to
  10. # run a long-running PHP script as a worker process (e.g. "php worker.php").
  11. entrypoint: serve gae-app.php
  12.  
  13. service: test-wp
  14.  
  15. # Defines static handlers to serve WordPress assets
  16. handlers:
  17. - url: /(.*.(htm|html|css|js))
  18. static_files: 1
  19. upload: .*.(htm|html|css|js)$
  20.  
  21. - url: /wp-content/(.*.(ico|jpg|jpeg|png|gif|woff|ttf|otf|eot|svg))
  22. static_files: wp-content/1
  23. upload: wp-content/.*.(ico|jpg|jpeg|png|gif|woff|ttf|otf|eot|svg)$
  24.  
  25. - url: /(.*.(ico|jpg|jpeg|png|gif|woff|ttf|otf|eot|svg))
  26. static_files: 1
  27. upload: .*.(ico|jpg|jpeg|png|gif|woff|ttf|otf|eot|svg)$
  28.  
  29. - url: /wp-includes/images/media/(.*.(ico|jpg|jpeg|png|gif|woff|ttf|otf|eot|svg))
  30. static_files: wp-includes/images/media/1
  31. upload: wp-includes/images/media/.*.(ico|jpg|jpeg|png|gif|woff|ttf|otf|eot|svg)$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement