10 lines
191 B
Python
10 lines
191 B
Python
|
from sys import path
|
||
|
from os import curdir
|
||
|
path.append(curdir)
|
||
|
|
||
|
from pelicanconf import *
|
||
|
|
||
|
SITEURL = 'https://undefinedbehavior.de'
|
||
|
PATH = '/var/www/virtual/undef/html'
|
||
|
RELATIVE_URLS = False
|