Skip to content

Commit eb43ff7

Browse files
committed
VERSION='2.7.0' - Fixing issues from the last release (2.6.0)!
The code has undergone significant modifications. Need to check if everything is good before adding the new feature!
1 parent 2fbc597 commit eb43ff7

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -250,17 +250,16 @@ BASE_DIR="/path/nginx_proxy_script/data"
250250
├── 📁 backups/ # Backup directories
251251
│ └── 📁 [IP]_[PORT]/ # NPM Instance (IP:PORT)
252252
│ ├── 📁 .access_lists/ # Access Lists configurations
253-
│ ├── 📁 .proxy_configs/ # Proxy configurations
254-
│ │ └── 📁 proxy_[ID]_[DOMAIN]/ # Directory for each proxy
255-
│ │ ├── 📄 proxy_config.json # Proxy configuration
256-
│ │ ├── 📄 nginx.conf # Nginx configuration
257-
│ │ ├── 📄 access.log # Access logs
258-
│ │ ├── 📄 error.log # Error logs
259-
│ │ ├── 📄 ssl_certificate.json # SSL certificate data
260-
│ │ ├── 📄 certificate.pem # Certificate
261-
│ │ ├── 📄 private.key # Private key
262-
│ │ └── 📄 chain.pem # Chain of certificates
263253
│ ├── 📁 .Proxy_Hosts/ # Host configurations
254+
│ │ ├── 📁 [DOMAIN]/ # Directory for each domain
255+
│ │ │ ├── 📁 logs/ # Log directory
256+
│ │ │ ├── 📁 ssl/ # SSL directory
257+
│ │ │ │ ├── 📄 certificate_meta.json # Certificate metadata
258+
│ │ │ │ ├── 📄 certificate.pem # Certificate
259+
│ │ │ │ ├── 📄 chain.pem # Chain of certificates
260+
│ │ │ │ └── 📄 private.key # Private key
261+
│ │ │ ├── 📄 nginx.conf # Nginx configuration
262+
│ │ │ └── 📄 proxy_config.json # Proxy configuration
264263
│ │ ├── 📄 all_hosts_[DATE].json # List of all hosts
265264
│ │ └── 📄 all_hosts_latest.json # Symlink to latest backup
266265
│ ├── 📁 .settings/ # NPM settings

nginx_proxy_manager_cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3084,7 +3084,7 @@ full_backup() {
30843084

30853085
# Create required subdirectories
30863086
echo -e "\n📂 ${COLOR_CYAN}Creating backup directories...${CoR}"
3087-
for dir in ".user" ".settings" ".access_lists" ".Proxy_Hosts" ".proxy_configs" ".ssl"; do
3087+
for dir in ".user" ".settings" ".access_lists" ".Proxy_Hosts" ".ssl"; do
30883088
mkdir -p "$BACKUP_PATH/$dir" || {
30893089
echo -e "${COLOR_RED}Failed to create $dir directory${CoR}"
30903090
return 1

0 commit comments

Comments
 (0)