0
nginxの背後でcuttlefish.ioを実行しようとすると、アセット(css、images、...)が404見つかりません。イカサーバーは、ローカルホスト上で実行されます:3000、そしてここに私のサーバー構成がnginxのである:nginxからcuttlefish.io Webサーバーにアクセスすると資産がロードされない
server
{
server_name my.cuttlefish;
listen 443 ssl;
ssl_certificate /etc/nginx/ssl/be-s2534-msl.cer;
ssl_certificate_key /etc/nginx/ssl/be-s2534-msl.key;
root /soft/wordpress/home/tupromail/cuttlefish-master/public;
location/
{
proxy_pass http://localhost:3000;
}
location ^~ /assets/
{
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @app;
location @app
{
proxy_pass http://app;
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#proxy_set_header Host $http_host;
proxy_redirect off;
}
client_max_body_size 1G;
keepalive_timeout 10;
}
ロードする資産を防ぎ、間違った/行方不明の何かがありますか?
おかげ