Welcome to the Basic Configuration guide! 🌟 This section covers essential settings and parameters for setting up your environment.
1. Configuration File Location
The primary configuration file is typically found at:/etc/your_app/config.yml
📌 Tip: Always back up your configuration file before making changes.
2. Key Parameters
- Port: Default is
8080
, but can be adjusted viaserver.port
. - Logging Level: Set to
info
ordebug
for detailed logs. - Database Connection: Configure
db.url
anddb.credentials
.
3. Environment Variables
Use these variables to override settings:
APP_ENV=production
LOG_PATH=/var/logs/app.log
4. Security Settings
- Enable HTTPS with
security.enable_ssl: true
. - Set
auth.token_secret
to a strong value.
For advanced configuration options, check out our Configuration Advanced guide.
Let me know if you need further assistance! 🛠️