feature 0.0070

This commit is contained in:
2026-03-01 19:44:12 +03:00
parent 395abdc569
commit 08e48aac29
2 changed files with 9 additions and 1 deletions

View File

@@ -32,7 +32,7 @@
mode: '0600' mode: '0600'
- name: Download nginx - name: Download nginx
shell: wget -O /opt/infra/nginx.yaml "{{ URL for docker-compose nginx }}" shell: wget -O /opt/infra/nginx.yaml "{{ URL for docker-compose nginx }}" #перенести докер в pipeline и выкачать страницы для запуска с созданием loacations в nginx
args: args:
creates: /opt/infra/nginx.yaml creates: /opt/infra/nginx.yaml

8
docker/nginx/nginx.yaml Normal file
View File

@@ -0,0 +1,8 @@
web:
image: nginx
volumes:
- ./templates:/etc/nginx/templates
- ./confs:/etc/nginx/conf.d
ports:
- "80:80"
- "443:443"