Hy,
ฉันกำลังมองหาสิ่งเดียวกันและในที่สุดฉันก็รวบรวมทางออกโดยใช้ apache2 ฉันลองใช้วิธีแก้ปัญหาโหนดโดยใช้ npm webdav-server และพบว่าไม่ได้ทำงานได้ดีเหมือนกันแล้วใช้โมดูล apache จากนั้นฉันลองใช้เซิร์ฟเวอร์ npm dav โดยอิงจาก jsDAV ที่สามารถทำได้ดีกว่าและอาจเป็นวิธีแก้ปัญหา แต่เมื่อฉันต้องจัดการกับการเชื่อมต่อ 3g หมัดฉันชอบ apache และพบสคริปต์อินสแตนซ์หลายตัว
ดังนั้นที่นี่ฉันแบ่งปันประสบการณ์ของฉัน
http://helpcenter.epages.com/Doc/doc/apache2/README.multiple-instances
ฉันเรียกใช้อินสแตนซ์ต่อผู้ใช้ webdav ... ไม่สามารถปรับขนาดได้ แต่เพื่อทำงานในทีมเล็ก ๆ มันดีพอ
แทนที่ myUser ด้วยผู้ใช้ของคุณ
บน Ubuntu 14.04
sh /usr/share/doc/apache2/examples/setup-instance myUser
ดังนั้นฉันจึงเรียกใช้กระบวนการ apache ตามที่ผู้ใช้ myUser กำหนดไว้ใน / etc / apache2-myUser / envars
export APACHE_RUN_USER=myUser
export APACHE_RUN_GROUP=myUser
แก้ไขพอร์ต
# If you proxy with nginx as I did better to limit to local interface
listen localhost:8080
# listen 8080
ฉันไม่สามารถรับ PAM auth บน ubuntu 14.04 เพื่อใช้งานได้ดังนั้นจำเป็นต้องหลอกด้วย auth พื้นฐานเพราะฉันห่อมันใน https ด้วย nginx
htpasswd -c /etc/apache2/htpasswd myUser
จากนั้น /etc/apache2-myUser/sites-available/000-default.conf
<VirtualHost *:8080>
DocumentRoot /var/www/html
Alias /${APACHE_RUN_USER} /home/${APACHE_RUN_USER}
<Directory /home/${APACHE_RUN_USER}>
Require all granted
Options +Indexes
</Directory>
<Location /${APACHE_RUN_USER}>
DAV On
AuthType Basic
AuthName "Restricted Area"
AuthUserFile /etc/apache2/htpasswd
Require valid-user
</Location>
DavLockDB /home/${APACHE_RUN_USER}/.DavLock
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
จากนั้นพร็อกซี nginx มีเคล็ดลับที่มีส่วนหัวโฟลเดอร์ส่งผ่านไอคอนปลายทางช่วยให้การลดระดับ webdav เป็นอย่างดีบนเบราว์เซอร์
server {
listen 443 ssl http2;
server_name exemple.com;
location ~ ^/(myUser|icons)/ {
proxy_pass http://dav-myUser;
# auth_basic "Restricted Content";
# auth_basic_user_file /etc/nginx/htpasswd;
# proxy_set_header Authorization $http_authorization;
proxy_pass_header Authorization;
proxy_pass_request_headers on;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
port_in_redirect off;
# to avoid 502 Bad Gateway:
# http://vanderwijk.info/Members/ivo/articles/ComplexSVNSetupFix
set $destination $http_destination;
if ($destination ~* ^https(.+)$) {
set $destination http$1;
}
proxy_set_header Destination $destination;
proxy_read_timeout 300;
proxy_connect_timeout 5;
# Default is HTTP/1, keepalive is only enabled in HTTP/1.1
proxy_http_version 1.1;
# Remove the Connection header if the client sends it,
# it could be "close" to close a keepalive connection
proxy_set_header Connection "";
}
ssl on;
ssl_certificate /etc/letsencrypt/live/exemple.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exemple.com/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
}
ไม่มีข้อผูกมัดที่จะใช้ nginx เป็น proxy, apache สามารถทำ https ได้ดีมาก แต่เมื่อฉันชนเข้ากับ proxy ปลายทางปัญหาฉันรู้สึกว่ามันคุ้มค่าที่จะพูดถึงมัน