Lars Bakke Krogvig

Results 4 comments of Lars Bakke Krogvig

Hey, let me add a +1 to this one. I'm trying to host the docs website with some sort of authentication, but I seem to run into problems with this...

Since posting above I found a solution for GCP users that work quite well: Host the docs website with AppEngine and wrap it in Google Auth with Identity-Aware Proxy (IAP)....

To host the docs website with GCS without any authetication _should work_ in the sense that I've been able to get it to work before. What I said above about...

This is my `app.yaml` ```yml service: default runtime: python37 handlers: - url: / static_files: public/index.html upload: public/index.html - url: / static_dir: public - url: /.* secure: always redirect_http_response_code: 301 script:...