-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
37 lines (28 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Way-CMS Environment Configuration
# Copy this file to .env and modify as needed
# Website directory path (can be absolute or relative to docker-compose.yml)
# This is where your website files are located
WEBSITE_DIR=./website
# Authentication
CMS_USERNAME=admin
CMS_PASSWORD=admin
# Optionally use a bcrypt hash instead of plain password:
# CMS_PASSWORD_HASH=$2b$12$...
# Security
SECRET_KEY=change-me-in-production-please
# Generate a secure key with: openssl rand -hex 32
# Read-only mode (set to 'true' to prevent modifications)
READ_ONLY_MODE=false
# Session timeout in minutes (default: 1440 = 24 hours)
SESSION_TIMEOUT_MINUTES=1440
# Website display settings
# URL of your live website (shown as a link in the CMS header)
WEBSITE_URL=http://localhost:8080
# Name of your website (shown in breadcrumb instead of folder name)
WEBSITE_NAME=My Website
# Docker configuration (for production docker-compose.prod.yml)
# Docker Hub username (if different from default)
# DOCKER_USERNAME=drumsergio
# CMS version to use in production (default: v1.2.14)
# Use specific version for stability, e.g., v1.2.10
# CMS_VERSION=v1.2.14