Nginx указывает на неправильное расположение папки - PullRequest
0 голосов
/ 01 сентября 2018

Я пытаюсь настроить nginx для обслуживания изображений по запросу. Рассмотрим следующую конфигурацию ниже;

сайты-доступные / images.conf

server {
    listen       8888;
    server_name  localhost;

    location images {
        root html/uploads;
    }
}

nginx.conf

... ommitted ...
http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}

    }
    ... ommitted ...
    include sites-available/*.conf;

}
...ommitted..

Теперь, когда я пытаюсь получить доступ к http://localhost:8888/images, он выдаст 404 Not Found и журналы ошибок

2018/09/01 17:01:30 [ошибка] 10368 # 9796: * 1 «C: \ nginx-1.14.0 / html / images / index.html» не найден (3: система не может найти указанный путь), клиент: 127.0.0.1, сервер: localhost, запрос: «GET / images / HTTP / 1.1», хост: «localhost: 8888»

Обратите внимание, что у меня есть папка внутри html, которая называется "uploads". Поэтому я ожидал, что nginx будет обслуживать C:\nginx-1.14.0/html/uploads/index.html, но это не так. Я не понимаю, почему это не будет указывать на правильную папку, которая html/uploads.

1 Ответ

0 голосов
/ 01 сентября 2018

Все nginx URI начинаются с /, поэтому ваше местоположение "изображений" должно быть location /images { ... }.

Если URI /images/foo указывает на файл, расположенный в .../html/uploads/foo, вам нужно будет использовать директиву alias вместо директивы root. Подробнее см. в этом документе .

Например:

location /images {
    alias html/uploads;
}
...