
nginxでエイリアスを正しく動作させるのに問題があります。エイリアスにアクセスしようとすると、/pmaそして/MBA(secure.example.com.confを参照)403禁止しますただし、ベース URL は正常に機能します。
たくさんの投稿を読みましたが、何も役に立たなかったので、ここにいます。
エンギンクスそしてphp-fpmwww-data:www-data として実行されており、ディレクトリの権限は次のように設定されています。
drwxrwsr-x+ 5 www-data www-data 4.0K Dec 5 22:48 ./
drwxr-xr-x. 3 root root 4.0K Dec 4 22:50 ../
drwxrwsr-x+ 2 www-data www-data 4.0K Dec 5 13:10 mda.example.com/
drwxrwsr-x+ 11 www-data www-data 4.0K Dec 5 10:34 pma.example.com/
drwxrwsr-x+ 3 www-data www-data 4.0K Dec 5 11:49 www.example.com/
lrwxrwxrwx. 1 www-data www-data 18 Dec 5 09:56 secure.example.com -> www.example.com/
量が多くて申し訳ないのですが、少なすぎるよりは多すぎる方が良いと思いました。
設定ファイルは次のとおりです。
nginx.conf は、
user www-data www-data;
worker_processes 1;
error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/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 /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
include /etc/nginx/sites-enabled/*;
}
セキュアなサイト
server {
listen 80;
server_name secure.example.com;
return 301 https://$host$request_uri;
}
server {
listen 443;
server_name secure.example.com;
access_log /var/log/nginx/secure.example.com.access.log;
error_log /var/log/nginx/secure.example.com.error.log;
root /srv/http/secure.example.com;
include /etc/nginx/ssl/secure.example.com.conf;
include /etc/nginx/conf.d/index.conf;
include /etc/nginx/conf.d/php-ssl.conf;
autoindex off;
location /pma/ {
alias /srv/http/pma.example.com;
}
location /mda/ {
alias /srv/http/mda.example.com;
}
}
セキュアなSSLサーバ証明書
ssl on;
ssl_certificate /etc/nginx/ssl/secure.example.com.crt;
ssl_certificate_key /etc/nginx/ssl/secure.example.com.key;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
nginx.conf のファイル
index index.php index.html index.htm;
php-ssl.conf は、次の例のように、
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param HTTPS on;
fastcgi_param SCRIPT_FILENAME $request_filename;
include fastcgi_params;
}
ログファイル
2013/12/05 22:49:04 [error] 29291#0: *2 directory index of "/srv/http/pma.example.com" is forbidden, client: 176.199.78.88, server: secure.example.com, request: "GET /pma/ HTTP/1.1", host: "secure.example.com"
編集: 言い忘れましたが、CentOS 6.4 x86_64 と nginx 1.0.15 を実行しています。
前もって感謝します!
答え1
/pma と /mda が標準以外の場所 (CentOS の場合) にあるため、/srv/http
発生している問題は SELinux に関連している可能性があります。
簡単なテストとしては、SELinuxをpermissiveモードに設定することです。
setenforce 0
ページが正しく動作するかテストしてください。正常に動作する場合は、正しいコンテキストを設定する必要があります。/srv/http
semanage fcontext -a -t httpd_sys_content_t "/srv/httpd(/.*)?"
restorecon -rv /srv/http
setenforce 1
もう一度テストすれば、問題なく実行できるはずです。