saving uncommitted changes in /etc prior to dnf run

This commit is contained in:
2022-07-04 13:54:36 +03:00
parent d88901024c
commit 23e7b2cdff
4 changed files with 21 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
server {
listen 192.168.1.2:80;
server_name ateliersai.com www.ateliersai.com;
access_log /var/log/nginx/ateliersai.com.access.log;
error_log /var/log/nginx/ateliersai.com.error.log notice;
location / {
proxy_pass http://127.0.0.1:9080/;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}