Google-App-Engine

使用 Google App Engine 處理靜態文件

  • February 13, 2015

我想從 Google App Engine 為我的網站提供靜態數據。

如何配置 GAE 以提供靜態內容?

關於如何讓 GAE 提供靜態內容的文件在這裡:使用靜態文件

這很簡單,您只需在app.yaml文件中定義一個靜態目錄。

handlers:
- url: /stylesheets
 static_dir: stylesheets

您希望所有文件都作為靜態文件,所以應該使用這個:

handlers:
- url: /
 static_dir: /

引用自:https://serverfault.com/questions/108278