0

アプリをローカル環境からテスト/運用サーバーに移動しました。

すべてが AWS ドライブで動作しstorage/protected/imagesますが、イメージが保存されているローカル ドライブ ae に変更すると、ローカル ドライブerror 404からすべてのイメージを取得します。

すべてのルートが存在し、すべてのコントローラーも配置されています。興味深いのは、私が保存しているダウンロード可能なファイルがstorage/protected/files問題なく動作し、何の問題もなくダウンロードできることです。

これが私のImageViewController

名前空間 App\Http\Controllers\Client;

use App\Exceptions\ErrorPageException;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Storage;

class ImageViewController extends Controller
{
    public function getMainImage($name)
    {
        if(file_exists(storage_path().'/app/protected/images/'.$name)){
            $image = storage_path().'/app/protected/images/'.$name;
        }else{
            throw new ErrorPageException(404);
        }
        return response()->file($image);
    }

    public function getImage($type, $name)
    {
        if(file_exists(storage_path().'/app/protected/images/'.$type.'/'.$name)){
            $image = storage_path().'/app/protected/images/'.$type.'/'.$name;
        }else{
            throw new ErrorPageException(404);
        }
        return response()->file($image);
    }

}

画像にアクセスするために使用する直接URLはexample.com/images/image.png

私が間違っていない限り、このエラーはnginxのセットアップに関係していると思われます。

あなたの考えを共有し、できれば私を助けてください。

4

1 に答える 1

0

私が疑ったように、nginxのセットアップが問題を引き起こしていたので、これをすべて整理するために私がしなければならなかったことは次のとおりです。

server {
    listen 80;
    server_name server_domain_or_IP;
    root /var/www/laravel/public;

    add_header X-Frame-Options "SAMEORIGIN";
    add_header X-XSS-Protection "1; mode=block";
    add_header X-Content-Type-Options "nosniff";

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.(?!well-known).* {
        deny all;
    }
}

ソース: Ubuntu 18.04 で LEMP を使用して Laravel をインストールおよび構成する方法

于 2020-05-26T12:55:47.797 に答える