mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-08-02 08:51:32 -04:00
- Replaced the All-in-One (AIO) deployment setup with a Standard Deployment configuration, introducing .env.advanced.example for advanced settings. - Updated .dockerignore to reflect the new environment file structure. - Removed .env.aio.example and associated references from documentation and workflows. - Enhanced installation instructions to clarify the new Standard Deployment process. - Updated GitHub Actions workflows to align with the new deployment structure, including smoke tests and image builds. - Improved documentation for environment variable references and deployment options.
11 lines
368 B
Markdown
11 lines
368 B
Markdown
# Disable Registration
|
|
|
|
To disable registration, you can set the following variable in your docker-compose.advanced.yml under the server service:
|
|
|
|
```yaml
|
|
environment:
|
|
- DISABLE_REGISTRATION=True
|
|
# OPTIONAL: Set the message to display when registration is disabled
|
|
- DISABLE_REGISTRATION_MESSAGE='Registration is disabled for this instance of AdventureLog.'
|
|
```
|