파이썬 이외의 Google 애플리케이션에 대해 정적 html 구성 요소 (오프라인으로 사용할 수 있음)를 만들려고합니다.GAE - 정적 페이지 및 Python 용 app.yaml
올바르게 구성된 app.yaml
파일을 가져올 수 없습니다.
handlers:
# Serve images and JSON as static resources.
- url: /(.+\.(gif|png|jpg|json|ico))$
static_files: \1
upload: .+\.(gif|png|jpg|json|ico)$
application_readable: true
- url: \/(static)\/(index)\.html
static_files: static/\1/index.html
upload: static\/index.html
- url:/
script: roomusage.app
login: required
secure: always
- url: /welcome
script: roomusage.app
login: required
secure: always
- url: /record
script: record_usage.app
login: required
secure: always
는 여기에 내가지고있어 오류 메시지입니다 :
appcfg.py: error: Error parsing C:\gcloud\dev-myapp\app.yaml: Unable to assign value '\/(static)\/(index)\.html' to attribute 'url':
Value '\/(static)\/(index)\.html' for url does not match expression '^(?:(?!\^)/.*|\..*|(\(.).*(?!\$).)$'
in "C:\gcloud\dev-myapp\app.yaml", line 25, column 8.
2017-12-08 09:27:50 (Process exited with code 2)
은'\/(정적) \/(인덱스) \. html' 패턴이 의심되는 용의자입니다. 일치시키려는 URL은 무엇이고 매개 변수는 어떤 것을 식별하고 싶습니까? –
URL : '/ static/index.html' (질문의 두 번째 부분을 이해하지 못함)과 일치 시키려고합니다. –