main Initial commit
This commit is contained in:
commit
ac7df91600
65 changed files with 8957 additions and 0 deletions
38
.env.example
Normal file
38
.env.example
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Example environment configuration
|
||||
# Copy this file to .env and update the values
|
||||
|
||||
# Server Configuration
|
||||
PORT=3000
|
||||
NODE_ENV=development
|
||||
|
||||
# Database Configuration
|
||||
DATABASE_PATH=./data/proxy_manager.db
|
||||
|
||||
# JWT Configuration
|
||||
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
||||
JWT_EXPIRES_IN=24h
|
||||
|
||||
# Admin Configuration
|
||||
ADMIN_USERNAME=admin
|
||||
ADMIN_PASSWORD=admin123
|
||||
|
||||
# NGINX Configuration
|
||||
NGINX_CONFIG_PATH=/etc/nginx/conf.d
|
||||
NGINX_BINARY_PATH=/usr/sbin/nginx
|
||||
|
||||
# SSL Configuration
|
||||
ACME_SH_PATH=/root/.acme.sh
|
||||
CERTBOT_PATH=/usr/bin/certbot
|
||||
SSL_METHOD=acme.sh
|
||||
CUSTOM_CERTS_PATH=./certs
|
||||
|
||||
# Logging
|
||||
LOG_LEVEL=info
|
||||
LOG_FILE=./logs/app.log
|
||||
|
||||
# CORS Configuration
|
||||
CORS_ORIGIN=http://localhost:3001
|
||||
|
||||
# Cloudflare Configuration
|
||||
CLOUDFLARE_API_TOKEN=your-cloudflare-api-token
|
||||
CLOUDFLARE_API_EMAIL= # your-cloudflare-email
|
||||
Loading…
Add table
Add a link
Reference in a new issue