2015-01-30 3 views
0

내 파일 디렉토리를 내 CSS와 JS 파일을 찾을 수없는 것은 :구글 앱 엔지니어, 내가 구성 static_dir에 의해

helloboard: 
|--bower_components 
| |--jquery 
|   |--lotsof.js 
|--css 
| |--app.css 
|--js 
| |--app.js 
| |--someother.js 
|--app.yaml 
|--index.html 
|--main.py 

내 애플리케이션 제목입니다 : 내가 방문

application: helloboard 
version: 1 
runtime: python27 
api_version: 1 
threadsafe: yes 

handlers: 


- url: /.* 
    script: main.app 

- url: /css/* 
    static_dir: css 
    expiration: "364d" 

- url: /js 
    static_dir: js 

- url: /bower_components 
    static_dir: bower_components 

http://localhost:8080/css/app.css 그것을 여전히 404 오류를 찾을 수 없습니다. 내가 읽었습니다 https://cloud.google.com/appengine/docs/python/config/appconfig 하지만 여전히 내 오류가 어디 있는지 몰라요.

답변

1

은 당신은 당신의 핸들러로 가지고 있기 때문에 :

- url: /.* 
    script: main.app 

요청 및 main.app에 보낼 것 어떤 URL과 일치합니다 - 다른 핸들러는 지금까지 상담을하지 않습니다!

그냥 app.yamlhandlers: 섹션의 에 그 연을 이동, 당신도 잘해야합니다.