fix directory

This commit is contained in:
2024-11-12 23:22:02 +03:00
parent f803c5c74b
commit 8fe1bebb4b
13 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,20 @@
- name: Install Nginx
zypper:
name: nginx
state: present
- name: Ensure Nginx is enabled and started
systemd:
name: nginx
enabled: yes
state: started
- name: Deploy Proxy Configuration
template:
src: proxy.conf.j2
dest: /etc/nginx/conf.d/proxy.conf
- name: Reload Nginx
systemd:
name: nginx
state: reloaded