我需要一个提示,我应该在这个方向上寻找答案。
我已经设置了一个可以在https://subdomain.no-ip.org下访问的Seafile服务器,现在我想让baikal可以在https://subdomain.no-ip.org/baikal下访问
但是,我无法让它运行,因为我总是收到来自Seafile的消息,即这个目录不存在。(我猜海员认为它应该是一个子目录)
我最近尝试配置apache - sites-enabled/default-ssl
<VirtualHost *:443>
ServerAdmin webmaster@localhost
Servername gasslnet.no-ip.org
DocumentRoot /var/www
Alias /media /home/andie/seafile-directory/seafile-server-latest/seahub$
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
<Directory "/var/www/baikal/html">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
我的海洋-设置:
ccnet/ccnet.conf
SERVICE_URL = https://subdomain.no-ip.orgseahub_settings.py
FILE_SERVER_ROOT = 'http://subdomain.no-ip.org/seafhttp'我认为问题在于海员的配置,如果海员能够在网址/海底下访问,而不仅仅是网址,问题就应该得到解决。我试着改变SERVICE_URL,但没有效果。
你对此有什么想法吗?
发布于 2016-02-16 14:57:03
你必须设置
SITE_ROOT = '/seafile'在seahub_settings.py中访问下面的Seafile
http://subdomain.no-ip.org/seafilehttps://stackoverflow.com/questions/32875627
复制相似问题