summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-29 13:03:40 +0200
committerDavid Robillard <d@drobilla.net>2020-03-29 13:03:40 +0200
commitb657d271af0d9c6256da53161fdc119de5472525 (patch)
treedaf98aa60febd0472b5bc56d7175ef787fd09d2b
parentb664b4bcb48e0872821a5dfa8336c667a2397d03 (diff)
downloadlv2site-b657d271af0d9c6256da53161fdc119de5472525.tar.xz
Use https for SITEURL
Without this, the stylesheets were broken because of mixed content. I am not sure how to make this work with only http, but I suppose it doesn't matter much these days anyway.
-rw-r--r--pelicanconf.py2
-rw-r--r--publishconf.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index a5fb9d4..11a5037 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -7,7 +7,7 @@ SITENAME = u'LV2'
SITELOGO = 'images/logo.svg'
SITELOGO_WIDTH = '26.194574em'
SITELOGO_HEIGHT = '24.525000em'
-SITEURL = 'http://lv2plug.in'
+SITEURL = 'https://lv2plug.in'
PATH = 'content'
diff --git a/publishconf.py b/publishconf.py
index aca0ffc..1576ef7 100644
--- a/publishconf.py
+++ b/publishconf.py
@@ -10,7 +10,7 @@ import sys
sys.path.append(os.curdir)
from pelicanconf import *
-SITEURL = 'http://lv2plug.in'
+SITEURL = 'https://lv2plug.in'
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'