Skip to content

Instantly share code, notes, and snippets.

@Gunio
Created December 29, 2011 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gunio/1536565 to your computer and use it in GitHub Desktop.
Save Gunio/1536565 to your computer and use it in GitHub Desktop.
Siri CalDAV
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
ServerAdmin webmaster@example.com
WSGIScriptAlias /cal /srv/http/caldav-to-gtasks/server.py
<Directory /srv/http/caldav-to-gtasks/>
AuthType Basic
AuthName "WSGI"
AuthUserFile /etc/httpd/passwd/passwords
Require user USERNAME
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment