Compare commits

...

2 Commits

Author SHA1 Message Date
9530b07eef
release 1.2.1
All checks were successful
Build an image to deploy website / build (push) Successful in 1m11s
2024-11-06 12:37:35 +01:00
5ea5f985c9
Use nginx instead of caddy 2024-11-06 12:37:04 +01:00
3 changed files with 12 additions and 2 deletions

3
.changes/1.2.1.md Normal file
View File

@ -0,0 +1,3 @@
## 1.2.1 - 2024-11-06
### Fixed
* Use nginx instead of caddy

View File

@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
## 1.2.1 - 2024-11-06
### Fixed
* Use nginx instead of caddy
## 1.2.0 - 2024-11-06
### Added
* Ajout formation signature électronique

View File

@ -1,3 +1,6 @@
FROM caddy:2-alpine
FROM nginx:1-alpine
ADD src/ /usr/share/caddy/
COPY src /usr/share/nginx/html
RUN sed -i 's/worker_processes auto/worker_processes 1/' /etc/nginx/nginx.conf
RUN sed -i 's/worker_processes auto/worker_processes 1/' /etc/nginx/nginx.conf