Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All changes that impact users of this module are documented in this file, in the [Common Changelog](https://common-changelog.org) format with some additional specifications defined in the CONTRIBUTING file. This codebase adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased [minor]

> Development of this release was supported by [Reset Tech](https://www.reset.tech).

### Changed

- Make nginx role usable outside this collection

## 3.0.1 - 2026-02-05

_Full changeset and discussions: [#63](https://github.com/OpenTermsArchive/deployment/pull/63)._
Expand Down
3 changes: 0 additions & 3 deletions playbooks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,3 @@
vars:
ota_nginx_app_id: "{{ ota_app_collection_id }}"
ota_nginx_endpoints: "{{ ota_app_endpoints }}"
ota_nginx_config_template: ./templates/nginx.conf.j2
ota_nginx_reverse_proxy_config_template: ./templates/nginx-reverse-proxy-conf.j2
ota_nginx_server_config_template: ./templates/nginx-server.conf.j2
4 changes: 4 additions & 0 deletions roles/nginx/configure/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
ota_nginx_config_template: nginx.conf.j2
ota_nginx_reverse_proxy_config_template: nginx-reverse-proxy-conf.j2
ota_nginx_server_config_template: nginx-server.conf.j2
2 changes: 1 addition & 1 deletion roles/nginx/configure/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

- name: Add global OTA config
ansible.builtin.template:
src: ./templates/nginx-global.conf.j2
src: nginx-global.conf.j2
dest: /etc/nginx/conf.d/ota-global.conf
owner: root
group: root
Expand Down