2023-07-27 11:34:19 +02:00
|
|
|
APP_NAME="OpnForm"
|
|
|
|
|
APP_ENV=local
|
|
|
|
|
APP_KEY=
|
|
|
|
|
APP_DEBUG=false
|
|
|
|
|
APP_URL=http://localhost
|
|
|
|
|
|
2024-08-27 16:49:43 +02:00
|
|
|
SELF_HOSTED=true
|
|
|
|
|
|
2023-07-27 11:34:19 +02:00
|
|
|
LOG_CHANNEL=errorlog
|
|
|
|
|
LOG_LEVEL=debug
|
|
|
|
|
|
2024-08-05 12:06:20 +02:00
|
|
|
FILESYSTEM_DRIVER=local
|
Enhance Docker Configuration and Health Checks (#761)
* Enhance Docker Configuration and Health Checks
- Added PHP configuration settings in `docker-compose.dev.yml` and `docker-compose.yml` to improve memory management and execution limits, ensuring better performance for PHP applications.
- Introduced health checks for various services including `api`, `api-worker`, `api-scheduler`, `ui`, `redis`, and `db` to ensure service availability and reliability.
- Updated environment variables in `.env.docker` and `client/.env.docker` to include new keys for H-Captcha and reCAPTCHA, enhancing security features.
- Refactored the PHP-FPM entrypoint script to apply PHP configurations dynamically based on environment variables, improving flexibility in deployment.
- Removed outdated PHP configuration files to streamline the Docker setup.
These changes aim to enhance the overall stability, performance, and security of the application in a Dockerized environment.
* Refactor Dockerfile for Improved Build Process
- Changed the Dockerfile to utilize a multi-stage build approach, separating the build and runtime environments for better efficiency.
- Introduced a builder stage using the PHP CLI image to install dependencies and extensions, optimizing the final image size.
- Removed unnecessary installation steps and combined related commands to streamline the Dockerfile, enhancing readability and maintainability.
- Updated the runtime stage to use the PHP FPM Alpine image, ensuring a smaller and more secure production environment.
These changes aim to improve the build process, reduce image size, and enhance the overall performance of the Dockerized application.
2025-05-20 19:20:44 +02:00
|
|
|
LOCAL_FILESYSTEM_VISIBILITY=public
|
2023-07-27 11:34:19 +02:00
|
|
|
|
2024-06-10 16:10:14 +02:00
|
|
|
BROADCAST_CONNECTION=log
|
2024-09-04 11:19:03 +02:00
|
|
|
|
2024-06-10 16:10:14 +02:00
|
|
|
CACHE_STORE=redis
|
2024-09-04 11:19:03 +02:00
|
|
|
CACHE_DRIVER=redis
|
|
|
|
|
|
2023-07-27 11:34:19 +02:00
|
|
|
QUEUE_CONNECTION=redis
|
2024-08-08 16:33:01 +02:00
|
|
|
SESSION_DRIVER=redis
|
2023-07-27 11:34:19 +02:00
|
|
|
SESSION_LIFETIME=120
|
|
|
|
|
|
2024-01-18 16:35:45 +01:00
|
|
|
MAIL_MAILER=log
|
|
|
|
|
MAIL_HOST=
|
|
|
|
|
MAIL_PORT=
|
2024-08-26 18:24:56 +02:00
|
|
|
MAIL_USERNAME=your@email.com
|
2024-01-18 16:35:45 +01:00
|
|
|
MAIL_PASSWORD=
|
|
|
|
|
MAIL_ENCRYPTION=
|
2024-08-26 18:24:56 +02:00
|
|
|
MAIL_FROM_ADDRESS=your@email.com
|
|
|
|
|
MAIL_FROM_NAME=OpnForm
|
2023-07-27 11:34:19 +02:00
|
|
|
|
|
|
|
|
AWS_ACCESS_KEY_ID=
|
|
|
|
|
AWS_SECRET_ACCESS_KEY=
|
|
|
|
|
AWS_DEFAULT_REGION=us-east-1
|
|
|
|
|
AWS_BUCKET=
|
|
|
|
|
|
|
|
|
|
JWT_TTL=1440
|
|
|
|
|
JWT_SECRET=
|
Enhance Docker Configuration and Health Checks (#761)
* Enhance Docker Configuration and Health Checks
- Added PHP configuration settings in `docker-compose.dev.yml` and `docker-compose.yml` to improve memory management and execution limits, ensuring better performance for PHP applications.
- Introduced health checks for various services including `api`, `api-worker`, `api-scheduler`, `ui`, `redis`, and `db` to ensure service availability and reliability.
- Updated environment variables in `.env.docker` and `client/.env.docker` to include new keys for H-Captcha and reCAPTCHA, enhancing security features.
- Refactored the PHP-FPM entrypoint script to apply PHP configurations dynamically based on environment variables, improving flexibility in deployment.
- Removed outdated PHP configuration files to streamline the Docker setup.
These changes aim to enhance the overall stability, performance, and security of the application in a Dockerized environment.
* Refactor Dockerfile for Improved Build Process
- Changed the Dockerfile to utilize a multi-stage build approach, separating the build and runtime environments for better efficiency.
- Introduced a builder stage using the PHP CLI image to install dependencies and extensions, optimizing the final image size.
- Removed unnecessary installation steps and combined related commands to streamline the Dockerfile, enhancing readability and maintainability.
- Updated the runtime stage to use the PHP FPM Alpine image, ensuring a smaller and more secure production environment.
These changes aim to improve the build process, reduce image size, and enhance the overall performance of the Dockerized application.
2025-05-20 19:20:44 +02:00
|
|
|
JWT_SKIP_IP_UA_VALIDATION=true
|
2023-07-27 11:34:19 +02:00
|
|
|
|
Enhance Docker Configuration and Health Checks (#761)
* Enhance Docker Configuration and Health Checks
- Added PHP configuration settings in `docker-compose.dev.yml` and `docker-compose.yml` to improve memory management and execution limits, ensuring better performance for PHP applications.
- Introduced health checks for various services including `api`, `api-worker`, `api-scheduler`, `ui`, `redis`, and `db` to ensure service availability and reliability.
- Updated environment variables in `.env.docker` and `client/.env.docker` to include new keys for H-Captcha and reCAPTCHA, enhancing security features.
- Refactored the PHP-FPM entrypoint script to apply PHP configurations dynamically based on environment variables, improving flexibility in deployment.
- Removed outdated PHP configuration files to streamline the Docker setup.
These changes aim to enhance the overall stability, performance, and security of the application in a Dockerized environment.
* Refactor Dockerfile for Improved Build Process
- Changed the Dockerfile to utilize a multi-stage build approach, separating the build and runtime environments for better efficiency.
- Introduced a builder stage using the PHP CLI image to install dependencies and extensions, optimizing the final image size.
- Removed unnecessary installation steps and combined related commands to streamline the Dockerfile, enhancing readability and maintainability.
- Updated the runtime stage to use the PHP FPM Alpine image, ensuring a smaller and more secure production environment.
These changes aim to improve the build process, reduce image size, and enhance the overall performance of the Dockerized application.
2025-05-20 19:20:44 +02:00
|
|
|
OPEN_AI_API_KEY=
|
|
|
|
|
|
|
|
|
|
H_CAPTCHA_SITE_KEY=
|
|
|
|
|
H_CAPTCHA_SECRET_KEY=
|
|
|
|
|
|
|
|
|
|
RE_CAPTCHA_SITE_KEY=
|
|
|
|
|
RE_CAPTCHA_SECRET_KEY=
|
|
|
|
|
|
|
|
|
|
TELEGRAM_BOT_ID=
|
|
|
|
|
TELEGRAM_BOT_TOKEN=
|
|
|
|
|
|
|
|
|
|
SHOW_OFFICIAL_TEMPLATES=true
|