Fix #33
This commit is contained in:
parent
6d13aed0f0
commit
e103bef84c
@ -88,6 +88,8 @@ Copy `apache2.conf.EXAMPLE` to `/etc/apache2/sites-available/moshingmammut.conf`
|
|||||||
Domain. If you do not need or want SSL support, remove the whole `<IfModule mod_ssl.c>` block.
|
Domain. If you do not need or want SSL support, remove the whole `<IfModule mod_ssl.c>` block.
|
||||||
If you do, add the path to your SSLCertificateFile and SSLCertificateKeyFile.
|
If you do, add the path to your SSLCertificateFile and SSLCertificateKeyFile.
|
||||||
|
|
||||||
|
Modify DocumentRoot and the two Alias and Directory statements, so that thumbnails and avatars are served directly by apache.
|
||||||
|
|
||||||
Copy `moshing-mammut.service.EXAMPLE` to `/etc/systemd/system/moshing-mammut.service`
|
Copy `moshing-mammut.service.EXAMPLE` to `/etc/systemd/system/moshing-mammut.service`
|
||||||
and set your `User`, `Group`, `ExecStart` and `WorkingDirectory` accordingly.
|
and set your `User`, `Group`, `ExecStart` and `WorkingDirectory` accordingly.
|
||||||
|
|
||||||
|
@ -15,6 +15,23 @@
|
|||||||
|
|
||||||
Include /etc/letsencrypt/options-ssl-apache.conf
|
Include /etc/letsencrypt/options-ssl-apache.conf
|
||||||
|
|
||||||
|
DocumentRoot /home/moshing-mammut/app/
|
||||||
|
|
||||||
|
ProxyPass /avatars/ !
|
||||||
|
ProxyPass /thumbnails/ !
|
||||||
|
Alias /avatars/ /home/moshing-mammut/app/avatars/
|
||||||
|
Alias /thumbnails/ /home/moshing-mammut/app/thumbnails/
|
||||||
|
|
||||||
|
<Directory "/home/moshing-mammut/app/avatars/">
|
||||||
|
Require all granted
|
||||||
|
Header set Cache-Control "public,max-age=31536000,immutable"
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory "/home/moshing-mammut/app/thumbnails/">
|
||||||
|
Require all granted
|
||||||
|
Header set Cache-Control "public,max-age=31536000,immutable"
|
||||||
|
</Directory>
|
||||||
|
|
||||||
ProxyPass / http://localhost:3000/
|
ProxyPass / http://localhost:3000/
|
||||||
ProxyPassReverse / http://localhost:3000/
|
ProxyPassReverse / http://localhost:3000/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user