无法让贝加尔在子目录中运行

时间:2014-02-25 16:47:30

标签: php nginx caldav carddav

我尝试在具有“常规包”的专用主机上安装Baïkal。我使用Nginx作为网络服务器,但我无法让它运行。官方docs仅用于在子域(http://baikal.mydomain.com)上运行贝加尔,而是在子目录(http://mydomain.com/baikal)中运行。当我打开http://mydomain.com/baikal/card.php/addressbooks/IstMe/default/时,我只收到“未找到文件”。任何帮助将不胜感激。

我的nginx.conf看起来像这样:

location /baikal {
    alias /usr/share/webapps/baikal/html;
    index index.php;
    rewrite ^/.well-known/caldav /cal.php redirect;
    rewrite ^/.well-known/carddav /card.php redirect;

    location ~ ^/baikal/(.+\.php)$ {
        alias /usr/share/webapps/baikal/html/$1;
        fastcgi_pass   unix:/run/php-fpm/php-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include fastcgi.conf;
    }
}

location ~* /baikal/(\.ht|Core|Specific) {
    deny  all;
    return 404;
}

3 个答案:

答案 0 :(得分:2)

我遇到了同样的问题。来自this article的非常简单的实例配置对我来说很有用:

server {
    listen       [::]:443 ssl;
    server_name  yourdomain.tld;

    root  /usr/share/nginx/baikal/html;
    index index.php;

    ssl_certificate      server.crt;
    ssl_certificate_key  server.key;

    ssl_session_timeout  5m;

    ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers   on;

    rewrite ^/.well-known/caldav /cal.php redirect;
    rewrite ^/.well-known/carddav /card.php redirect;

    charset utf-8;

    location ~ /(\.ht|Core|Specific) {
        deny all;
        return 404;
    }

    location ~ ^(.+\.php)(.*)$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include        fastcgi_params;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

答案 1 :(得分:0)

相当古老的帖子,但我已被重定向到这里寻找解决同样问题的解决方案^^
这是一个关于这个问题的post和一个可能的解决方案 这是NGINX的配置(这是剪切和粘贴,这不是我的工作):

location ^~ /baikal { # triggers location of baikal installation, and stop looking for other matches
  index index.php;
  charset utf-8; 

  # curiosity killed the cat 
  location ~ ^/baikal/(?:\.ht|Core|Specific) {
    deny all;
  }

  # this corresponds to the recommended regex for matching php files
  # and piping it to php-fpm
  location ~ ^(.+\.php)(.*) {
    try_files $fastcgi_script_name =404;
    fastcgi_split_path_info ^(.+\.php)(.*)$;
    fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    include fastcgi_params;
  }

  # case insensitive matching of static files for maximum caching time
  location ~* \.(?:jpg|gif|ico|png|css|js|svg)$ {
    expires max; add_header Cache-Control public;
  }
}

我使用apache所以我无法测试它,但这是我用来解决我的网络服务器上的问题的起点。

答案 2 :(得分:0)

您是否尝试过创建2个从根到html目录的符号链接:

cd /var/www/baikal
sudo ln -s  html/card.php card.php
sudo ln -s  html/cal.php cal.php

哪个应该给出结果:

ls -lah /var/www/baikal
total 72K
drwxrwxr-x  6 www-data www-data 4,0K nov.  19 12:40 .
drwxr-xr-x 25 www-data www-data 4,0K nov.  19 12:54 ..
lrwxrwxrwx  1 root     root       12 nov.  19 12:40 cal.php -> html/cal.php
lrwxrwxrwx  1 root     root       13 nov.  19 12:40 card.php -> html/card.php

这似乎适用于我的安装。