Хорошо, ребята, я недавно начал возиться с nginx, и мне нужна помощь. Я потратил целый день, пытаясь понять это, и я просто покончил с этим.
После того, как я установил заголовок в php для x-accel-redirect, я получаю пустой ответ. Я пытаюсь обслуживать файлы изображений из внешнего местоположения в корень сайта папка, но в том же компьютере.
Может кто-нибудь указать, что я делаю не так?
Самое смешное / странное то, что я не получаю никаких ошибок или предупреждений от nginx. Я также не получаю ничего в журналах доступа / ошибок, даже с debug
Журналы ошибок включены.
вот мой nginx.conf
user Omi Admin;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log debug;
#error_log /usr/local/var/log/nginx/error.log debug;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
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;
location /unprocessed {
internal;
alias /usr/local/MyMateApp/ean_images/unprocessed;
}
root /Users/Omi/Desktop/CustomerServiceWebsite/www;
index index.html index.htm index.php;
error_page 404 /404.html;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
try_files $uri = 404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$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;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
include servers/*;
}
И вот где я установил заголовок в php
header('X-Accel-Redirect: /unprocessed/' . $fileName);
Я получаю ответ, но он просто пуст.
Задача ещё не решена.
Других решений пока нет …