saving uncommitted changes in /etc prior to dnf run

This commit is contained in:
2023-08-10 11:58:05 +03:00
parent 2d84c3580c
commit b9d544b9c6
199 changed files with 5119 additions and 120 deletions

View File

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