我在那里,在我的本地文件我的文件之前,我能够为他们服务很好.现在,我将静态文件移动到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”传送.
最佳答案
原文链接:https://www.f2er.com/nginx/435052.html