publish, some fixes

This commit is contained in:
Tyrel Souza 2022-10-16 23:18:28 -04:00
parent 9da9f697f0
commit a8b87925dc
4 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@ You can un-expire a GPG key.
:date: 2012-01-13 03:54
:author: tyrel
:category: Tech
:category: linux, gpg
:tags: linux, gpg
:slug: you-can-un-expire-a-gpg-key
:status: published

View File

@ -1,12 +1,12 @@
AUTHOR = 'Tyrel Souza'
SITENAME = 'Tyrel Site'
TWITTER_USERNAME = 'tyrelsouza'
SITEURL = ''
SITEURL = 'https://tyrel.dev/blog'
SITESUBTITLE = 'Code, Home Automation, Personal Blog'
MENUITEMS = [
('Home', '/'),
('Tags', '/tags'),
('Categories', '/categories'),
('Home', '/blog/'),
('Tags', '/blog/tags.html'),
('Categories', '/blog/categories.html'),
]
PATH = 'content'

View File

@ -7,7 +7,7 @@ sys.path.append(os.curdir)
from pelicanconf import *
# If your site is available via HTTPS, make sure SITEURL begins with https://
SITEURL = 'https://tyrel.dev/pelican/'
SITEURL = 'https://tyrel.dev/blog'
RELATIVE_URLS = False
FEED_ALL_ATOM = 'feeds/all.atom.xml'

View File

@ -27,9 +27,9 @@ CONFIG = {
'deploy_path': SETTINGS['OUTPUT_PATH'],
# Remote server configuration
'ssh_user': 'tyrel',
'ssh_host': 'localhost',
'ssh_host': 'tyrelsouza.com',
'ssh_port': '22',
'ssh_path': '/Users/tyrel/pelican-site',
'ssh_path': '/www/tyrel.dev/blog/',
# Host and port for `serve`
'host': 'localhost',
'port': 8000,