30 lines
1.3 KiB
Bash
30 lines
1.3 KiB
Bash
# SMTP configuration for sending emails
|
|
SMTP_HOST=us2.smtp.yourtld.com # SMTP server host
|
|
SMTP_PORT=587 # SMTP server port
|
|
EMAIL_USER=user@yourtld.com # Email address used for SMTP authentication
|
|
EMAIL_PASS="ComplexPass" # Password for the SMTP user (Use a complex, secure password)
|
|
RECEIVER_EMAIL=youremail@yourtld.com # Default receiver email for outgoing messages
|
|
|
|
# CAPTCHA key for form verification (replace with your real CAPTCHA secret key)
|
|
CAPTCHA_SECRET_KEY="KEYHERE"
|
|
CAPTCHA_SITE_KEY="SITE_KEY_HERE"
|
|
|
|
# URL configuration
|
|
# NO TRAILING SLASH - Base host URL for the website
|
|
HOST_URL="https://yourtld.com"
|
|
# TRAILING SLASH - Blog URL, should have a trailing slash at the end
|
|
BLOG_URL="https://blog.yourtld.com/"
|
|
# Domain name, without URL structure
|
|
DOMAIN_NAME="yourtld.com"
|
|
|
|
# Website branding
|
|
SITE_NAME="what ever you want here" # Title used in the website's navbar
|
|
OWNER_NAME="Your Name" # Name of the website's owner (you)
|
|
|
|
# Front page content
|
|
FRONT_PAGE_TITLE="Hello, my name is Your Name" # Main heading on the homepage
|
|
FRONT_PAGE_LEAD="Where Technology Meets Creativity: Insights from a Linux Enthusiast" # Short lead text on the homepage
|
|
|
|
# Footer content
|
|
FOOTER_TAGLINE="Never Stop Learning" # Tagline for the footer section of the website
|