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

@@ -1,57 +1,58 @@
server {
listen 192.168.1.2:80;
server_name club3d.ro www.club3d.ro www.123.club3d.ro www.456.club3d.ro 123.club3d.ro 456.club3d.ro;
charset utf-8;
root /var/www/html/vhosts/club3d.ro/;
index index.php index.html index.htm;
listen 192.168.1.2:80;
server_name club3d.ro www.club3d.ro www.123.club3d.ro www.456.club3d.ro 123.club3d.ro 456.club3d.ro;
charset utf-8;
root /var/www/html/vhosts/club3d.ro/;
index index.php index.html index.htm;
access_log /var/log/nginx/club3d.ro.access.log;
error_log /var/log/nginx/club3d.ro.error.log;
access_log /var/log/nginx/club3d.ro.access.log;
error_log /var/log/nginx/club3d.ro.error.log;
location ~* \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
location ~* \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_max_temp_file_size 0;
fastcgi_buffer_size 4K;
fastcgi_buffers 64 4k;
}
location /madalin {
location /madalin {
autoindex on;
}
}
location /glibc {
location /glibc {
autoindex on;
}
}
# gzip should not be used with SSL
gzip off;
location /sgwi {
auth_basic "Private Zone";
auth_basic_user_file /etc/nginx/.htpasswd;
}
# gzip should not be used with SSL
gzip off;
location /anaf {
location /sgwi {
auth_basic "Private Zone";
auth_basic_user_file /etc/nginx/.htpasswd;
}
location /anaf {
auth_basic "Private";
auth_basic_user_file /etc/nginx/.anaf;
}
}
listen 192.168.1.2:443 ssl http2; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/club3d.ro-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/club3d.ro-0001/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
listen 192.168.1.2:443 ssl http2; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/club3d.ro-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/club3d.ro-0001/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
### redirect
if ($scheme != "https") {
return 301 https://$host$request_uri;
} # managed by Certbot
### redirect
if ($scheme != "https") {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host ~* ~^www\..+\.club3d.ro\.ro$) {
return 301 $scheme://+\/club3d.ro$request_uri;
return 301 $scheme://+\/club3d.ro$request_uri;
}
}

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;
}
}

View File

@@ -0,0 +1,25 @@
server {
listen 192.168.1.2:80;
server_name secure.898.ro;
return 301 https://$host$request_uri;
}
server {
listen 192.168.1.2:443 http2 ssl;
server_name secure.898.ro;
ssl_certificate /etc/letsencrypt/live/secure.898.ro/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/secure.898.ro/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
access_log /var/log/nginx/secure.898.ro.access.log;
error_log /var/log/nginx/secure.898.ro.error.log notice;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}