【发布时间】:2014-12-06 18:10:51
【问题描述】:
我想在我的服务器上使用 Baikal 和 NGINX。 baikal的index.php在/baikal/html
以下配置的请求适用于此 url:
https://www.mydomain.com:8001/baikal/html
我如何更改 NGINX 配置
https://www.mydomain.com:8001/baikal
被重定向到https://www.mydomain.com:8001/baikal/html?
这是我的 NGINX 配置:
server {
listen 8001;
ssl on; # <-------------------------------------------- SSL
ssl_certificate /etc/nginx/ssl/seahub.crt; # <--------- SSL
ssl_certificate_key /etc/nginx/ssl/seahub.key; # <----- SSL
server_name confile.no-ip.biz; #.tld; # <----------------- CHANGE THIS
root /usr/share/nginx/www;
index index.html index.htm index.php;
rewrite ^/.well-known/caldav /cal.php redirect;
rewrite ^/.well-known/carddav /card.php redirect;
location / {
location ~ ^(.+\.php)(.*) {
try_files $fastcgi_script_name =404;
fastcgi_split_path_info ^(.+\.php)(.*)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_index index.php;
include fastcgi_params;
}
charset utf-8;
location ~ /(\.ht|Core|Specific) {
deny all;
return 404;
}
}
}
【问题讨论】:
标签: php html redirect nginx https