diff options
Diffstat (limited to 'siteconfig.py')
| -rw-r--r-- | siteconfig.py | 45 | 
1 files changed, 8 insertions, 37 deletions
diff --git a/siteconfig.py b/siteconfig.py index aa03597..4a653d4 100644 --- a/siteconfig.py +++ b/siteconfig.py @@ -8,8 +8,8 @@ from config import config  class siteconfig(config):      # REQUIRED SETTINGS # -    DOMAIN = "mjfer.net"  # Your site here! -    HOME_TITLE = "welcome" +    DOMAIN = "example.net"  # Your site here! +    HOME_TITLE = "WELCOME"      LINKS_FILE = ".links"  # ".lnx" if you like      DESC_FILE = ".description"  # ".desc"      DEFAULT_MIMETYPE = "application/octet-stream" @@ -25,7 +25,7 @@ class siteconfig(config):      MAIN_SITE_DIRS = sorted(          config.DEFAULT_SITE_DIRS      )  # ["dir1", "dir2", "dir3"] -    MAIN_SITE_DIRS.remove("files") +      # Set a custom secret key. If not set, it will be generated      # Most of the time, you don't need to set this!      SECRET_KEY = config.GENERATED_SECRET_KEY # replace with random number. @@ -34,47 +34,18 @@ class siteconfig(config):      # see here https://pypi.org/project/Flask-Compress/      COMPRESS_MIMETYPES = list(config.MIMETYPES.values()) -    # Options for Flask Caching -    # https://flask-caching.readthedocs.io/en/latest/#configuring-flask-caching -    cache_config = { -        'CACHE_TYPE': "SimpleCache", -        'CACHE_DEFAULT_TIMEOUT': 10, -        # You should only fill ONE of the sections below -        # uswgi -        'CACHE_UWSGI_NAME': None, -        ## -        # memcache -        'CACHE_MEMCACHED_SERVERS': None, -        'CACHE_MEMCACHED_USERNAME': None, -        'CACHE_MEMCACHED_PASSWORD': None, -        ## -        # redis -        'CACHE_REDIS_HOST': None, -        'CACHE_REDIS_PORT': None, -        'CACHE_REDIS_PASSWORD': None, -        'CACHE_REDIS_DB': None, -        'CACHE_REDIS_URL': None, -        'CACHE_REDIS_SENTINELS': None, -        'CACHE_REDIS_SENTINEL_MASTER': None, -        'CACHE_REDIS_CLUSTER': None, -        ## -        # filesystem -        'CACHE_DIR': None, -        # add more options as needed from the URL above -    } -      # RSS Settings      rss_channel_config = { -        'TITLE': "mjfer.net RSS Feed", -        'LINK': "https://mjfer.net/feed.xml", -        'DESCRIPTION': "feed organized by the latest updated files", +        'TITLE': "RSS Feed for example.net", +        'LINK': "http://127.0.0.1:5000/", +        'DESCRIPTION': "My example feed",          'LANGUAGE': "en-us",          'PUBDATE': "",          'LASTBUILDDATE': "",          'DOCS': "https://git.mjfer.net/ezcms.git/",          'GENERATOR': "EZCMS", -        'AUTHOR': "mjf@mjfer.net", -        'WEBMASTER': "mjf@mjfer.net", +        'AUTHOR': "editor@example.net", +        'WEBMASTER': "webmaster@example.net",          # Max amount of paragraphs to print in each description          'DESCRIPTION_LENGTH': 3,          # File extensions to include in RSS updates  | 
