Nginx Proxy通过S3特定的html文件

前端之家收集整理的这篇文章主要介绍了Nginx Proxy通过S3特定的html文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在那里,在我的本地文件我的文件之前,我能够为他们服务很好.现在,我将静态文件移动到S3,但是我想使用自定义域来提供index.html启动文件.从index.html必须可以导航到其他.html.

到目前为止,我得到:

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    include snippets/letsencrypt.conf;
    include snippets/ssl-params.conf;

    charset   utf-8;

    server_name mydomain;

    location / {


 proxy_set_header       Host 's3-eu-west-1.amazonaws.com';
        proxy_set_header       Authorization '';
        proxy_hide_header      x-amz-id-2;
        proxy_hide_header      x-amz-request-id;
        proxy_hide_header      Set-Cookie;
        proxy_ignore_headers   "Set-Cookie";
        proxy_intercept_errors on;
        set $indexfile         "s3-eu-west-1.amazonaws.com/myprod-bucket/static/js/frontend/build_v0.5/";
        proxy_pass             https://$indexfile;

        # expires 1y;
        log_not_found off;

        auth_basic "Restricted Content";
        auth_basic_user_file /etc/Nginx/.htpasswd_finder;
    }

}

我似乎找不到任何为我的案例工作的例子,我做错了什么?

更新:我改变了一点基于https://stackoverflow.com/a/22843758/977622,我开始得到:

拒绝执行’../vendor.5ad3d736.js’脚本,因为它的MIME类型(‘text / html’)不可执行,并且启用了严格的MIME类型检查.

资源被解释为样式表,但是使用MIME类型text / html:“../styles/main.b812e04a.css”传送.

最佳答案
在代理方案中,内容类型由原始服务器指定(在这种情况下为S3),除非被覆盖.您可以在上传S3对象时指定mime类型.如果您通过S3 Web界面进行操作,请确保不要取消选中“自动绘制内容类型”.除非另有说明,否则A​​WS cli工具也会自动猜测mime类型.如果您使用其他东西上传文件,则需要领导相应的工具手册/ API参考.

此外,您可以直接从S3为您提供网站,请参阅Hosting a Static Website on Amazon S3

原文链接:https://www.f2er.com/nginx/435052.html

猜你在找的Nginx相关文章