summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustav Eek <gustav@fripost.org>2015-04-23 22:17:29 +0200
committerGustav Eek <gustav@fripost.org>2015-04-23 22:17:29 +0200
commite25959babfb4d6514f1a8766e24f4a4272236b96 (patch)
tree53aea01ccc76d07a293b234235e838e050909857
parente848046a0e83a8a1a021fb8206f972c04414f649 (diff)
The attempt actually works
To complete a previous git commit message. Configure the web server forwarding rules correctly will make static content to be served correctly. This is the Nginx configuration snippet: ---- server { server_name fripost.localhost; location / { root /home/gustav/public_html/fripost-wiki/website; location /static { root /home/gustav/public_html/fripost-wiki; } } } server { server_name wiki.fripost.localhost; location / { root /home/gustav/public_html/fripost-wiki; } } ---- The extra rule for `/static` did the thing.
0 files changed, 0 insertions, 0 deletions