Created
November 25, 2022 17:50
-
-
Save Kovah/6d45070192f871cb8e5f226aca1d44ee to your computer and use it in GitHub Desktop.
Linkace Ansible 2022-11 - Vars
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
app_url: "https://linkace.example.com" | |
proxy_port: 8080 | |
site_root: "/var/www/linkace-demo" | |
site_domain: "linkace.example.com" | |
site_ssl_directory: "/" | |
env_source: "env.j2" | |
env_destination: "{{ deploy_helper.new_release_path }}/.env" | |
nginx_global_log_base: "/var/log/nginx/sites" | |
linkace_db_host: "db" | |
linkace_db_name: "linkace" | |
linkace_db_user: "linkace" | |
linkace_app_key: "base64:hPhGErU2UoQQ3DFCTxmlF6y5TPc5+CoRKgsjA0yy3rw=" | |
linkace_db_pass: "0o9RuBYzXDbV62ik5TEhmd4/PpKYvy9W" | |
linkace_redis_pass: "Iz6sNKqZTx4eA/oRAo5lMC29VczOYmdh" | |
linkace_sentry_dsn: "https://you-sentry-dsn.com" | |
docker_image: "linkace/linkace:simple" | |
docker_compose_project: "linkace" | |
docker_compose_source: "docker-compose.yml.j2" | |
docker_compose_destination: "{{ deploy_helper.new_release_path }}/docker-compose.yml" | |
docker_app_container: "linkace-app-1" | |
cronjobs: | |
- linkace_schedule: | |
name: "LinkAce Schedule" | |
command: "docker exec {{ docker_app_container }} ash -c \"php artisan schedule:run\"" | |
schedule: | |
min: "*" | |
hour: "*" | |
day: "*" | |
month: "*" | |
weekday: "*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment