MisterM
Verified User
- Joined
- Jul 31, 2022
- Messages
- 267
Hello to all
I installed without any difficulty seafile under DA.
By simply following this tutorial:
https://techviewleo.com/how-to-configure-seafile-server-on-debian/
Is for the Apache configuration :
manual.seafile.com
Is to generate the apache2 configuration by using it for several subdomains:
I installed without any difficulty seafile under DA.
By simply following this tutorial:
https://techviewleo.com/how-to-configure-seafile-server-on-debian/
Is for the Apache configuration :
Config Seahub with Apache - Seafile Admin Manual
<VirtualHost |IP|:|PORT_443| |MULTI_IP|>
ServerName sharefile.|DOMAIN|
ServerAdmin |ADMIN|
DocumentRoot /var/www/html
Alias /media /srv/seafile/seahub/media
AllowEncodedSlashes On
RewriteEngine On
<Location /media>
Require all granted
</Location>
SSLEngine on
SSLCertificateFile |CERT|
SSLCertificateKeyFile |KEY|
|CAROOT|
#
# seafile fileserver
#
ProxyPass /seafhttp http://127.0.0.1:8082
ProxyPassReverse /seafhttp http://127.0.0.1:8082
RewriteRule ^/seafhttp - [QSA,L]
#
# seahub
#
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8000/
ProxyPassReverse / http://127.0.0.1:8000/
CustomLog /var/log/httpd/domains/|DOMAIN|.bytes bytes
CustomLog /var/log/httpd/domains/|DOMAIN|.log combined
ErrorLog /var/log/httpd/domains/|DOMAIN|.error.log