Google App Engine php sdk を使用しようとしています。私はこのドキュメントを読んでいますhttps://developers.google.com/appengine/docs/php/gettingstarted/helloworld
。
http://localhost:8080/
helloworld script を見に行くべきだと書かれています。
しかし、ブラウザで次のサーバー エラーが発生します。
Server error
The website encountered an error while retrieving http://localhost:8080/. It may be down for maintenance or configured incorrectly.
Here are some suggestions:
Reload this webpage later.
HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.
Ubuntu 12.04 で Google Chrome を使用しています。
これは私のhelloworld.php
<?php
echo "Hello World !";
?>
そして私のapp.yaml
:
application: helloworld
version: 1
runtime: php
api_version: 1
handlers:
- url: /.*
script: helloworld.php