diff --git a/collections/requirements.yml b/collections/requirements.yml new file mode 100644 index 0000000..08e2610 --- /dev/null +++ b/collections/requirements.yml @@ -0,0 +1,3 @@ +--- +collections: +- community.general diff --git a/hosts.yml b/hosts.yml new file mode 100644 index 0000000..ef2cee3 --- /dev/null +++ b/hosts.yml @@ -0,0 +1,10 @@ +--- +# file: hosts + +vikunja: + hosts: + server1: + ansible_host: 10.10.2.13 + + vars: + ansible_user: user diff --git a/roles/vikunja/defaults/main.yml b/roles/vikunja/defaults/main.yml new file mode 100644 index 0000000..f5e2e15 --- /dev/null +++ b/roles/vikunja/defaults/main.yml @@ -0,0 +1,51 @@ +--- +# file: roles/vikunja/defaults/main.yml + +vikunja_config_enableregistration: "true" +vikunja_config_demomode: "false" +vikunja_config_maxsize: 50MB +vikunja_config_motd: "" +vikunja_config_lang: "en" +vikunja_config_enabletotp: "true" +vikunja_config_customlogourl: "" +vikunja_config_cors: "false" + +vikunja_config_mailer: "false" +vikunja_config_mailer_host: "" +vikunja_config_mailer_port: 587 +vikunja_config_mailer_authtype: "plain" +vikunja_config_mailer_username: "user" +vikunja_config_mailer_password: "" +vikunja_config_mailer_skiptlsverify: "false" +vikunja_config_mailer_fromemail: "mail@vikunja" +vikunja_config_mailer_queuelength: "100" +vikunja_config_mailer_queuetimeout: "30" +vikunja_config_mailer_forcessl: "false" + +vikunja_config_database_type: "sqlite" +vikunja_config_database_user: "vikunja" +vikunja_config_database_password: "" +vikunja_config_database_host: "localhost" +vikunja_config_database_database: "vikunja" +vikunja_config_database_path: "./vikunja.db" + +vikunja_config_timezone: "GMT" + +vikunja_config_localauth: "true" + +vikunja_config_openid: "false" +vikunja_config_openid_redirecturl: "https://todo.haletek.com/auth/openid/" +vikunja_config_openid_provider: "" +vikunja_config_openid_authurl: "" +vikunja_config_openid_logouturl: "" +vikunja_config_openid_clientid: "" +vikunja_config_openid_clientsecret: "" + +vikunja_config_discoverable_by_name: "false" +vikunja_config_discoverable_by_email: "false" + +vikunja_nginx_config: "vikunja.conf.j2" +vikunja_nginx_config_output: "{{ vikunja_nginx_config.replace('.j2','') }}" + +vikunja_port: "8080/tcp" +vikunja_access_ip: "" diff --git a/roles/vikunja/handlers/main.yml b/roles/vikunja/handlers/main.yml new file mode 100644 index 0000000..63e52ce --- /dev/null +++ b/roles/vikunja/handlers/main.yml @@ -0,0 +1,17 @@ +--- +# file: roles/vikunja/handlers/main.yml + +- name: Restart vikunja + service: + name: vikunja + state: restarted + +- name: Reload nginx + service: + name: nginx + state: reloaded + +- name: Reload firewalld + service: + name: firewalld + state: reloaded diff --git a/roles/vikunja/tasks/main.yml b/roles/vikunja/tasks/main.yml new file mode 100644 index 0000000..c20c127 --- /dev/null +++ b/roles/vikunja/tasks/main.yml @@ -0,0 +1,139 @@ +--- +# file: roles/vikunja/tasks/main.yml + +- name: Install vikunja + package: + name: "https://dl.vikunja.io/vikunja/0.23.0/vikunja-0.23.0-x86_64.rpm" + state: present + disable_gpg_check: True + +- name: Install nginx + package: + name: nginx + state: present + +- name: Deploy vikunja configuration file + template: + src: "config.yml.j2" + dest: "/etc/vikunja/config.yml" + notify: Restart vikunja + +- name: Start and enable vikunja services + service: + name: vikunja + state: started + enabled: yes + +- name: Install mariadb packages + package: + name: + - mariadb-server + state: latest + when: vikunja_config_database_type == "mysql" + +- name: Install PyMySQL + pip: + name: pymysql + state: present + when: vikunja_config_database_type == "mysql" + +- name: Start and enable mariadb + service: + name: mariadb + state: started + enabled: yes + when: vikunja_config_database_type == "mysql" + +- name: Delete anonymous MySQL server user + mysql_user: + user: "" + host_all: yes + state: "absent" + check_implicit_admin: true + login_unix_socket: /var/lib/mysql/mysql.sock + when: vikunja_config_database_type == "mysql" + +- name: Remove the default MySQL test database + mysql_db: + db: test + state: absent + check_implicit_admin: true + login_unix_socket: /var/lib/mysql/mysql.sock + when: vikunja_config_database_type == "mysql" + +- name: Creating Vikunja DB + mysql_db: + name: "{{ vikunja_config_database_database }}" + state: present + encoding: utf8 + check_implicit_admin: true + login_unix_socket: /var/lib/mysql/mysql.sock + when: vikunja_config_database_type == "mysql" + +- name: Creating Vikunja DB User + mysql_user: + name: "{{ vikunja_config_database_user }}" + password: "{{ vikunja_config_database_password }}" + priv: "{{ vikunja_config_database_database + '.*:ALL' }}" + state: present + check_implicit_admin: true + login_unix_socket: /var/lib/mysql/mysql.sock + when: vikunja_config_database_type == "mysql" + +- name: Deploy nginx configuration file + template: + src: "{{ vikunja_nginx_config }}" + dest: "/etc/nginx/conf.d/{{ vikunja_nginx_config_output }}" + notify: Reload nginx + +- name: Allow nginx to read files in output dir + sefcontext: + target: "/etc/nginx/conf.d/{{ vikunja_nginx_config_output }}" + setype: httpd_config_t + state: present + +- name: Apply new SELinux file context to filesystem + command: "restorecon -irv /etc/nginx/conf.d/{{ vikunja_nginx_config_output }}" + +- name: Set selinuxuser_execmod flag + seboolean: + name: selinuxuser_execmod + state: true + persistent: true + +- name: Set httpd_can_network_connect flag + seboolean: + name: httpd_can_network_connect + state: true + persistent: true + +- name: Enable firewall rule for access + firewalld: + port: "{{ vikunja_port }}" + permanent: yes + immediate: yes + state: enabled + notify: Reload firewalld + when: vikunja_access_ip == "" + +- name: "Enable firewall rule for access from Access IP" + firewalld: + rich_rule: 'rule family="ipv4" source address={{ vikunja_access_ip }} port port={{ vikunja_port.split("/").0 }} protocol={{ vikunja_port.split("/").1 }} accept' + permanent: yes + state: enabled + immediate: yes + notify: Reload firewalld + when: vikunja_access_ip != "" + +- name: Allow nginx to listen on port + seport: + ports: "{{ vikunja_port.split('/').0 }}" + proto: "{{ vikunja_port.split('/').1 }}" + setype: http_port_t + state: present + +- name: Start and enable nginx services + service: + name: nginx + state: started + enabled: yes diff --git a/roles/vikunja/templates/config.yml.j2 b/roles/vikunja/templates/config.yml.j2 new file mode 100644 index 0000000..c9b6599 --- /dev/null +++ b/roles/vikunja/templates/config.yml.j2 @@ -0,0 +1,374 @@ +service: + # This token is used to verify issued JWT tokens. + # Default is a random token which will be generated at each startup of vikunja. + # (This means all already issued tokens will be invalid once you restart vikunja) + JWTSecret: "" + # The duration of the issued JWT tokens in seconds. + # The default is 259200 seconds (3 Days). + jwtttl: 259200 + # The duration of the "remember me" time in seconds. When the login request is made with + # the long param set, the token returned will be valid for this period. + # The default is 2592000 seconds (30 Days). + jwtttllong: 2592000 + # The interface on which to run the webserver + interface: ":3456" + # Path to Unix socket. If set, it will be created and used instead of tcp + unixsocket: + # Permission bits for the Unix socket. Note that octal values must be prefixed by "0o", e.g. 0o660 + unixsocketmode: + # The public facing URL where your users can reach Vikunja. Used in emails and for the communication between api and frontend. + publicurl: "" + # The base path on the file system where the binary and assets are. + # Vikunja will also look in this path for a config file, so you could provide only this variable to point to a folder + # with a config file which will then be used. + rootpath: /opt/vikunja/ + # The max number of items which can be returned per page + maxitemsperpage: 50 + # Enable the caldav endpoint, see the docs for more details + enablecaldav: true + # Set the motd message, available from the /info endpoint + motd: "{{ vikunja_config_motd }}" + # Enable sharing of project via a link + enablelinksharing: true + # Whether to let new users registering themselves or not + enableregistration: {{ vikunja_config_enableregistration }} + # Whether to enable task attachments or not + enabletaskattachments: true + # The time zone all timestamps are in. Please note that time zones have to use [the official tz database names](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). UTC or GMT offsets won't work. + timezone: {{ vikunja_config_timezone }} + # Whether task comments should be enabled or not + enabletaskcomments: true + # Whether totp is enabled. In most cases you want to leave that enabled. + enabletotp: {{ vikunja_config_enabletotp }} + # If not empty, this will enable `/test/{table}` endpoints which allow to put any content in the database. + # Used to reset the db before frontend tests. Because this is quite a dangerous feature allowing for lots of harm, + # each request made to this endpoint needs to provide an `Authorization: ` header with the token from below.
+ # **You should never use this unless you know exactly what you're doing** + testingtoken: '' + # If enabled, vikunja will send an email to everyone who is either assigned to a task or created it when a task reminder + # is due. + enableemailreminders: true + # If true, will allow users to request the complete deletion of their account. When using external authentication methods + # it may be required to coordinate with them in order to delete the account. This setting will not affect the cli commands + # for user deletion. + enableuserdeletion: true + # The maximum size clients will be able to request for user avatars. + # If clients request a size bigger than this, it will be changed on the fly. + maxavatarsize: 1024 + # If set to true, the frontend will show a big red warning not to use this instance for real data as it will be cleared out. + # You probably don't need to set this value, it was created specifically for usage on [try](https://try.vikunja.io). + demomode: {{ vikunja_config_demomode }} + # Allow changing the logo and other icons based on various occasions throughout the year. + allowiconchanges: true + # Allow using a custom logo via external URL. + customlogourl: '{{ vikunja_config_customlogourl }}' + +sentry: + # If set to true, enables anonymous error tracking of api errors via Sentry. This allows us to gather more + # information about errors in order to debug and fix it. + enabled: false + # Configure the Sentry dsn used for api error tracking. Only used when Sentry is enabled for the api. + dsn: "https://440eedc957d545a795c17bbaf477497c@o1047380.ingest.sentry.io/4504254983634944" + # If set to true, enables anonymous error tracking of frontend errors via Sentry. This allows us to gather more + # information about errors in order to debug and fix it. + frontendenabled: false + # Configure the Sentry dsn used for frontend error tracking. Only used when Sentry is enabled for the frontend. + frontenddsn: "https://85694a2d757547cbbc90cd4b55c5a18d@o1047380.ingest.sentry.io/6024480" + +database: + # Database type to use. Supported types are mysql, postgres and sqlite. + type: "{{ vikunja_config_database_type }}" + # Database user which is used to connect to the database. + user: "{{ vikunja_config_database_user }}" + # Database password + password: "{{ vikunja_config_database_password }}" + # Database host + host: "{{ vikunja_config_database_host }}" + # Database to use + database: "{{ vikunja_config_database_database }}" + # When using sqlite, this is the path where to store the data + path: "{{ vikunja_config_database_path }}" + # Sets the max open connections to the database. Only used when using mysql and postgres. + maxopenconnections: 100 + # Sets the maximum number of idle connections to the db. + maxidleconnections: 50 + # The maximum lifetime of a single db connection in milliseconds. + maxconnectionlifetime: 10000 + # Secure connection mode. Only used with postgres. + # (see https://pkg.go.dev/github.com/lib/pq?tab=doc#hdr-Connection_String_Parameters) + sslmode: disable + # The path to the client cert. Only used with postgres. + sslcert: "" + # The path to the client key. Only used with postgres. + sslkey: "" + # The path to the ca cert. Only used with postgres. + sslrootcert: "" + # Enable SSL/TLS for mysql connections. Options: false, true, skip-verify, preferred + tls: false + +typesense: + # Whether to enable the Typesense integration. If true, all tasks will be synced to the configured Typesense + # instance and all search and filtering will run through Typesense instead of only through the database. + # Typesense allows fast fulltext search including fuzzy matching support. It may return different results than + # what you'd get with a database-only search. + enabled: false + # The url to the Typesense instance you want to use. Can be hosted locally or in Typesense Cloud as long + # as Vikunja is able to reach it. + url: '' + # The Typesense API key you want to use. + apikey: '' + +redis: + # Whether to enable redis or not + enabled: false + # The host of the redis server including its port. + host: 'localhost:6379' + # The password used to authenticate against the redis server + password: '' + # 0 means default database + db: 0 + +cors: + # Whether to enable or disable cors headers. + # Note: If you want to put the frontend and the api on separate domains or ports, you will need to enable this. + # Otherwise the frontend won't be able to make requests to the api through the browser. + enable: {{ vikunja_config_cors }} + # A list of origins which may access the api. These need to include the protocol (`http://` or `https://`) and port, if any. + origins: + - "*" + # How long (in seconds) the results of a preflight request can be cached. + maxage: 0 + + +mailer: + # Whether to enable the mailer or not. If it is disabled, all users are enabled right away and password reset is not possible. + enabled: {{ vikunja_config_mailer }} + # SMTP Host + host: "{{ vikunja_config_mailer_host }}" + # SMTP Host port. + # **NOTE:** If you're unable to send mail and the only error you see in the logs is an `EOF`, try setting the port to `25`. + port: {{ vikunja_config_mailer_port }} + # SMTP Auth Type. Can be either `plain`, `login` or `cram-md5`. + authtype: "{{ vikunja_config_mailer_authtype }}" + # SMTP username + username: "{{ vikunja_config_mailer_username }}" + # SMTP password + password: "{{ vikunja_config_mailer_password }}" + # Wether to skip verification of the tls certificate on the server + skiptlsverify: {{ vikunja_config_mailer_skiptlsverify }} + # The default from address when sending emails + fromemail: "{{ vikunja_config_mailer_fromemail }}" + # The length of the mail queue. + queuelength: {{ vikunja_config_mailer_queuelength }} + # The timeout in seconds after which the current open connection to the mailserver will be closed. + queuetimeout: {{ vikunja_config_mailer_queuetimeout }} + # By default, vikunja will try to connect with starttls, use this option to force it to use ssl. + forcessl: {{ vikunja_config_mailer_forcessl }} + +log: + # A folder where all the logfiles should go. + path: /opt/vikunja/logs + # Whether to show any logging at all or none + enabled: true + # Where the normal log should go. Possible values are stdout, stderr, file or off to disable standard logging. + standard: "stdout" + # Change the log level. Possible values (case-insensitive) are CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG. + level: "INFO" + # Whether or not to log database queries. Useful for debugging. Possible values are stdout, stderr, file or off to disable database logging. + database: "off" + # The log level for database log messages. Possible values (case-insensitive) are CRITICAL, ERROR, WARNING, NOTICE, INFO, DEBUG. + databaselevel: "WARNING" + # Whether to log http requests or not. Possible values are stdout, stderr, file or off to disable http logging. + http: "stdout" + # Echo has its own logging which usually is unnecessary, which is why it is disabled by default. Possible values are stdout, stderr, file or off to disable standard logging. + echo: "off" + # Whether or not to log events. Useful for debugging. Possible values are stdout, stderr, file or off to disable events logging. + events: "off" + # The log level for event log messages. Possible values (case-insensitive) are ERROR, INFO, DEBUG. + eventslevel: "info" + # Whether or not to log mail log messages. This will not log mail contents. Possible values are stdout, stderr, file or off to disable mail-related logging. + mail: "off" + # The log level for mail log messages. Possible values (case-insensitive) are ERROR, WARNING, INFO, DEBUG. + maillevel: "info" + +ratelimit: + # whether or not to enable the rate limit + enabled: false + # The kind on which rates are based. Can be either "user" for a rate limit per user or "ip" for an ip-based rate limit. + kind: user + # The time period in seconds for the limit + period: 60 + # The max number of requests a user is allowed to do in the configured time period + limit: 100 + # The store where the limit counter for each user is stored. + # Possible values are "keyvalue", "memory" or "redis". + # When choosing "keyvalue" this setting follows the one configured in the "keyvalue" section. + store: keyvalue + # The number of requests a user can make from the same IP to all unauthenticated routes (login, register, + # password confirmation, email verification, password reset request) per minute. This limit cannot be disabled. + # You should only change this if you know what you're doing. + noauthlimit: 10 + +files: + # The path where files are stored + basepath: ./files # relative to the binary + # The maximum size of a file, as a human-readable string. + # Warning: The max size is limited 2^64-1 bytes due to the underlying datatype + maxsize: {{ vikunja_config_maxsize }} + +migration: + todoist: + # Wheter to enable the todoist migrator or not + enable: false + # The client id, required for making requests to the todoist api + # You need to register your vikunja instance at https://developer.todoist.com/appconsole.html to get this + clientid: + # The client secret, also required for making requests to the todoist api + clientsecret: + # The url where clients are redirected after they authorized Vikunja to access their todoist items. + # This needs to match the url you entered when registering your Vikunja instance at todoist. + # This is usually the frontend url where the frontend then makes a request to /migration/todoist/migrate + # with the code obtained from the todoist api. + # Note that the vikunja frontend expects this to be /migrate/todoist + redirecturl: /migrate/todoist + trello: + # Whether to enable the trello migrator or not + enable: false + # The client id, required for making requests to the trello api + # You need to register your vikunja instance at https://trello.com/app-key (log in before you visit that link) to get this + key: + # The url where clients are redirected after they authorized Vikunja to access their trello cards. + # This needs to match the url you entered when registering your Vikunja instance at trello. + # This is usually the frontend url where the frontend then makes a request to /migration/trello/migrate + # with the code obtained from the trello api. + # Note that the vikunja frontend expects this to end on /migrate/trello. + redirecturl: /migrate/trello + microsofttodo: + # Wheter to enable the microsoft todo migrator or not + enable: false + # The client id, required for making requests to the microsoft graph api + # See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app#register-an-application + # for information about how to register your Vikunja instance. + clientid: + # The client secret, also required for making requests to the microsoft graph api + clientsecret: + # The url where clients are redirected after they authorized Vikunja to access their microsoft todo tasks. + # This needs to match the url you entered when registering your Vikunja instance at microsoft. + # This is usually the frontend url where the frontend then makes a request to /migration/microsoft-todo/migrate + # with the code obtained from the microsoft graph api. + # Note that the vikunja frontend expects this to be /migrate/microsoft-todo + redirecturl: /migrate/microsoft-todo + +avatar: + # When using gravatar, this is the duration in seconds until a cached gravatar user avatar expires + gravatarexpiration: 3600 + +backgrounds: + # Whether to enable backgrounds for projects at all. + enabled: true + providers: + upload: + # Whether to enable uploaded project backgrounds + enabled: true + unsplash: + # Whether to enable setting backgrounds from unsplash as project backgrounds + enabled: false + # You need to create an application for your installation at https://unsplash.com/oauth/applications/new + # and set the access token below. + accesstoken: + # The unsplash application id is only used for pingback and required as per their api guidelines. + # You can find the Application ID in the dashboard for your API application. It should be a numeric ID. + # It will only show in the UI if your application has been approved for Enterprise usage, therefore if + # you’re in Demo mode, you can also find the ID in the URL at the end: https://unsplash.com/oauth/applications/:application_id + applicationid: + +# Legal urls +# Will be shown in the frontend if configured here +legal: + imprinturl: + privacyurl: + +# Key Value Storage settings +# The Key Value Storage is used for different kinds of things like metrics and a few cache systems. +keyvalue: + # The type of the storage backend. Can be either "memory" or "redis". If "redis" is chosen it needs to be configured separately. + type: "memory" + +auth: + # Local authentication will let users log in and register (if enabled) through the db. + # This is the default auth mechanism and does not require any additional configuration. + local: + # Enable or disable local authentication + enabled: {{ vikunja_config_localauth }} + # OpenID configuration will allow users to authenticate through a third-party OpenID Connect compatible provider.
+ # The provider needs to support the `openid`, `profile` and `email` scopes.
+ # **Note:** Some openid providers (like gitlab) only make the email of the user available through openid claims if they have set it to be publicly visible. + # If the email is not public in those cases, authenticating will fail. + # **Note 2:** The frontend expects to be redirected after authentication by the third party + # to /auth/openid/. Please make sure to configure the redirect url in your third party + # auth service accordingly if you're using the default vikunja frontend. + # The frontend will automatically provide the api with the redirect url, composed from the current url where it's hosted. + # If you want to use the desktop client with openid, make sure to allow redirects to `127.0.0.1`. + # Take a look at the [default config file](https://kolaente.dev/vikunja/vikunja/src/branch/main/config.yml.sample) for more information about how to configure openid authentication. + openid: + # Enable or disable OpenID Connect authentication + enabled: {{ vikunja_config_openid }} + redirecturl: {{ vikunja_config_openid_redirecturl }} + # A list of enabled providers + providers: + # The name of the provider as it will appear in the frontend. + - name: {{ vikunja_config_openid_provider }} + # The auth url to send users to if they want to authenticate using OpenID Connect. + authurl: {{ vikunja_config_openid_authurl }} + # The oidc logouturl that users will be redirected to on logout. + # Leave empty or delete key, if you do not want to be redirected. + logouturl: {{ vikunja_config_openid_logouturl }} + # The client ID used to authenticate Vikunja at the OpenID Connect provider. + clientid: {{ vikunja_config_openid_clientid }} + # The client secret used to authenticate Vikunja at the OpenID Connect provider. + clientsecret: {{ vikunja_config_openid_clientsecret }} + +# Prometheus metrics endpoint +metrics: + # If set to true, enables a /metrics endpoint for prometheus to collect metrics about Vikunja. You can query it from `/api/v1/metrics`. + enabled: false + # If set to a non-empty value the /metrics endpoint will require this as a username via basic auth in combination with the password below. + username: + # If set to a non-empty value the /metrics endpoint will require this as a password via basic auth in combination with the username below. + password: + +# Provide default settings for new users. When a new user is created, these settings will automatically be set for the user. If you change them in the config file afterwards they will not be changed back for existing users. +defaultsettings: + # The avatar source for the user. Can be `gravatar`, `initials`, `upload` or `marble`. If you set this to `upload` you'll also need to specify `defaultsettings.avatar_file_id`. + avatar_provider: initials + # The id of the file used as avatar. + avatar_file_id: 0 + # If set to true users will get task reminders via email. + email_reminders_enabled: false + # If set to true will allow other users to find this user when searching for parts of their name. + discoverable_by_name: {{ vikunja_config_discoverable_by_name }} + # If set to true will allow other users to find this user when searching for their exact email. + discoverable_by_email: {{ vikunja_config_discoverable_by_email }} + # If set to true will send an email every day with all overdue tasks at a configured time. + overdue_tasks_reminders_enabled: true + # When to send the overdue task reminder email. + overdue_tasks_reminders_time: 9:00 + # The id of the default project. Make sure users actually have access to this project when setting this value. + default_project_id: 0 + # Start of the week for the user. `0` is sunday, `1` is monday and so on. + week_start: 0 + # The language of the user interface. Must be an ISO 639-1 language code followed by an ISO 3166-1 alpha-2 country code. Check https://kolaente.dev/vikunja/vikunja/frontend/src/branch/main/src/i18n/lang for a list of possible languages. Will default to the browser language the user uses when signing up. + language: {{ vikunja_config_lang }} + # The time zone of each individual user. This will affect when users get reminders and overdue task emails. + timezone: {{ vikunja_config_timezone }} + +webhooks: + # Whether to enable support for webhooks + enabled: true + # The timout in seconds until a webhook request fails when no response has been received. + timoutseconds: 30 + # The URL of [a mole instance](https://github.com/frain-dev/mole) to use to proxy outgoing webhook requests. You should use this and configure appropriately if you're not the only one using your Vikunja instance. More info about why: https://webhooks.fyi/best-practices/webhook-providers#implement-security-on-egress-communication. Must be used in combination with `webhooks.password` (see below). + proxyurl: + # The proxy password to use when authenticating against the proxy. + proxypassword: + diff --git a/roles/vikunja/templates/vikunja.conf.j2 b/roles/vikunja/templates/vikunja.conf.j2 new file mode 100644 index 0000000..4bcadcf --- /dev/null +++ b/roles/vikunja/templates/vikunja.conf.j2 @@ -0,0 +1,8 @@ +server { + listen {{ vikunja_port.split("/").0 }}; + + location / { + proxy_pass http://localhost:3456; + client_max_body_size {{ vikunja_config_maxsize.replace('MB','M') }}; + } +} diff --git a/site.yml b/site.yml new file mode 100644 index 0000000..33cb633 --- /dev/null +++ b/site.yml @@ -0,0 +1,4 @@ +--- +## This playbook deploys the whole application stack in this site. + +- import_playbook: vikunja.yml diff --git a/vikunja.yml b/vikunja.yml new file mode 100644 index 0000000..3713a1f --- /dev/null +++ b/vikunja.yml @@ -0,0 +1,7 @@ +--- +# file: vikunja.yml + +- hosts: vikunja + become: true + roles: + - vikunja