saving uncommitted changes in /etc prior to dnf run

This commit is contained in:
2022-07-12 14:25:21 +03:00
parent c41d4bb444
commit 1f716bc798
18 changed files with 381 additions and 40 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 192.168.1.2:80;
server_name h.898.ro;
access_log /var/log/nginx/h.898.ro.access.log;
error_log /var/log/nginx/h.898.ro.error.log notice;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}