これについての答えを探すべき方向のヒントが必要です。
https://subdomain.no-ip.orgでアクセスできる Seafile サーバーをセットアップしました。https://subdomain.no-ip.org/baikal でバイカルにアクセスできるようにしたいと考えています。
ただし、Seafile からこのディレクトリが存在しないというメッセージが常に表示されるため、実行できません。(私は 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>
私の Seafile 設定:
ccnet/ccnet.conf
SERVICE_URL = https://subdomain.no-ip.org
seahub_settings.py
FILE_SERVER_ROOT = 'http://subdomain.no-ip.org/seafhttp'
問題は seafile の設定にあると思います.url/seafile の下で seafile にアクセスでき、url だけでなく問題を解決する必要がある場合. SERVICE_URL を変更してみましたが、効果がありません。
これについて何か考えはありますか?