Mercurial > public > pelican-blog
changeset 22:a893739e9587
Updates for SSL
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 21 Jul 2018 17:47:55 -0500 |
parents | 21a29f2520ca |
children | e4f02a31925d |
files | pelicanconf.py publishconf.py |
diffstat | 2 files changed, 3 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/pelicanconf.py Sat Aug 27 13:18:54 2016 -0500 +++ b/pelicanconf.py Sat Jul 21 17:47:55 2018 -0500 @@ -20,14 +20,12 @@ # Blogroll LINKS = [ - ('My Delicious', 'http://delicious.com/bgneal'), - ('My Careers 2.0 Profile', 'http://careers.stackoverflow.com/bgneal'), - ('SurfGuitar101.com', 'http://surfguitar101.com/'), + ('SurfGuitar101.com', 'https://surfguitar101.com/'), ] # Social widget SOCIAL = [ - ('twitter', 'http://twitter.com/bgneal'), + ('twitter', 'https://twitter.com/bgneal'), ('bitbucket', 'https://bitbucket.org/bgneal'), ('github', 'https://github.com/gremmie'), ]
--- a/publishconf.py Sat Aug 27 13:18:54 2016 -0500 +++ b/publishconf.py Sat Jul 21 17:47:55 2018 -0500 @@ -10,7 +10,7 @@ sys.path.append(os.curdir) from pelicanconf import * -SITEURL = 'http://deathofagremmie.com' +SITEURL = 'https://deathofagremmie.com' RELATIVE_URLS = False FEED_ALL_ATOM = 'feeds/all.atom.xml'