FreedomBox/data/etc/apache2/conf-available/diaspora-plinth.conf
Joseph Nuthalpati 747a02adf2
diaspora: Will be served from a subdomain
Cannot host diaspora on a path because the url is part of the user id.
2017-05-06 07:25:40 -04:00

17 lines
388 B
Plaintext

<VirtualHost diaspora.localhost>
ServerName diaspora.localhost
DocumentRoot "/var/lib/diaspora/public/"
<Location "/">
ProxyPass "unix:/var/run/diaspora/diaspora.sock|http://localhost/"
</Location>
<Location "/assets">
ProxyPass !
</Location>
<Directory /var/lib/diaspora/public/>
Require all granted
</Directory>
</VirtualHost>