diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2016-03-08 19:19:44 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2016-03-08 19:19:44 +0100 |
commit | f75cf3857bf19f5923ef409573b16adff7fe0abb (patch) | |
tree | dc267993ad10c541bbe30cba5ae735dcb931bf84 | |
parent | 3c122e41923640978ed8408659ecabdda220ba16 (diff) |
Do not force http in link
-rwxr-xr-x | pelicanconf.py | 2 | ||||
-rw-r--r-- | publishconf.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index c31ac2c..57a0940 100755 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -3,7 +3,7 @@ AUTHOR = u'Chimrod' SITENAME = u'Chimrod' -SITEURL = 'http://localhost:8000' +SITEURL = '//localhost:8000' TIMEZONE = 'Europe/Paris' diff --git a/publishconf.py b/publishconf.py index b224980..261cf85 100644 --- a/publishconf.py +++ b/publishconf.py @@ -5,7 +5,7 @@ import sys sys.path.append('.') from pelicanconf import * -SITEURL = 'http://blog.chimrod.com' +SITEURL = '//blog.chimrod.com' FEED_DOMAIN = SITEURL DELETE_OUTPUT_DIRECTORY = True |