Eu configurei meu arquivo de site, mas por qualquer motivo o alias não está funcionando. O site é um site interno e todos os arquivos de mídia são mantidos em um NAS fora do servidor. Estou tentando acessá-los usando / video / e / pictures / em vez do caminho completo. Seja o que for que eu tente, eles não carregam. Alguém pode ajudar?
server {
listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default_server ipv6only=on; ## listen for ipv6
#root /usr/share/nginx/www;
root /var/www/Misc/public_html;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name Misc;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.php;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /video/ {
alias /media/Misc/Misc/All\ Videos/;
}
location /pictures/ {
alias /media/Misc/iVideo/Library\ Caches/Misc/All\ Videos/;
}
# Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests
#location /RequestDenied {
# proxy_pass http://127.0.0.1:8080;
#}
#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 /usr/share/nginx/www;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
EXPULSÃO DO EXEMPLO DE REGISTRO DE ERROS DE ATUALIZAÇÃO
2015/03/30 20:36:35 [crit] 2919#0: *1123 open() "/media/Misc/Misc/All\ Videos/video/104567382878862660r.m4v" failed (22: Invalid argument), client: 10.0.0.80, server: misc, request: "GET /video/104567382878862660r.m4v HTTP/1.1", host: "misc", referrer: "http://misc/Videolist.php"
Tags nginx