2023年4月11日星期二

linux 搭建apache2 webdav服务端-用于写入rclone mount的盘

apt-get update

apt-get install apache2 apache2-utils sudo -y

sudo a2enmod dav

sudo a2enmod dav_fs


nano /etc/apache2/sites-available/000-default.conf


Alias /webdav  /home/gdrive-b01


<Location /webdav>

 Options Indexes

 DAV On

 AuthType Basic

 AuthName "webdav"

 AuthUserFile /etc/apache2/webdav.password

 Require valid-user

 </Location>



sudo htpasswd -c /etc/apache2/webdav.password  admin


nano /etc/apache2/ports.conf

41114


systemctl restart apache2


没有评论:

发表评论

caddy反代下载文件

# 监听端口 51110,提供静态文件服务和目录浏览 :51110 {     root * /home/tls     encode gzip  # 只启用 gzip 压缩     file_server {         browse     }     # 使用提供的证书...