Sunday, July 31, 2016

Zotero+WebDAV

I use Zotero to keep track of papers I (need to) read and recently I ran out of space in the Zotero servers because of attachments. Luckily, Zotero allows you to sync attachments using WebDAV. All I need is to setup WebDAV on my group's server. Space problem solved!

Apache config directive:

    Alias /zotero /zotero
    <Location /zotero>
        Options Indexes
        DAV On
        AuthType Basic
        AuthName "zotero"
        AuthUserFile /etc/apache2/webdav.password
        Require valid-user
    </Location>

0 comments: