Skip to content

Commit 1e2a21e

Browse files
committed
Final cleanup
1 parent 483c793 commit 1e2a21e

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Namingo Domain Manager supports the following **DNS providers**, each requiring
3939
To get started, copy the command below and paste it into your server terminal:
4040

4141
```bash
42-
bash <(wget -qO- https://raw.githubusercontent.com/getnamingo/dnspanel/refs/heads/main/docs/install.sh)
42+
bash <(wget -qO- https://raw.githubusercontent.com/getnamingo/domain-manager/refs/heads/main/docs/install.sh)
4343
```
4444

4545
For detailed installation steps, see [install.md](docs/install.md)
@@ -55,7 +55,7 @@ See the full configuration guide at [Configuration Guide](docs/configuration.md)
5555
To get started, copy the command below and paste it into your server terminal:
5656

5757
```bash
58-
bash <(wget -qO- https://raw.githubusercontent.com/getnamingo/dnspanel/refs/heads/main/docs/update.sh)
58+
bash <(wget -qO- https://raw.githubusercontent.com/getnamingo/domain-manager/refs/heads/main/docs/update.sh)
5959
```
6060

6161
## Contributing
@@ -65,4 +65,4 @@ Contributions are welcome! Feel free to submit a pull request or open an issue.
6565
This project is licensed under the **MIT License**.
6666

6767
## Contact
68-
For any issues or feature requests, please open an issue on **[GitHub](https://github.com/getnamingo/dnspanel/issues)**.
68+
For any issues or feature requests, please open an issue on **[GitHub](https://github.com/getnamingo/domain-manager/issues)**.

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Replace `dns` with your desired username and `RANDOM_STRONG_PASSWORD` with a sec
192192
## 5. Download Domain Manager:
193193

194194
```bash
195-
git clone https://github.com/getnamingo/dnspanel /var/www/dns
195+
git clone https://github.com/getnamingo/domain-manager /var/www/dns
196196
```
197197

198198
## 6. Setup Domain Manager:

docs/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ log "Cloning NDM into $INSTALL_PATH …"
294294
mkdir -p "$INSTALL_PATH"
295295

296296
if [[ -z "$(ls -A "$INSTALL_PATH")" ]]; then
297-
git clone https://github.com/getnamingo/dnspanel.git "$INSTALL_PATH"
297+
git clone https://github.com/getnamingo/domain-manager.git "$INSTALL_PATH"
298298
else
299299
warn "$INSTALL_PATH is not empty. Skipping git clone."
300300
fi

docs/update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ fi
7575

7676
# Clone the new version of the repository
7777
echo "Cloning new version from the repository..."
78-
git clone https://github.com/getnamingo/dnspanel /tmp/ndm
78+
git clone https://github.com/getnamingo/domain-manager /tmp/ndm
7979

8080
# Copy files from the new version to the appropriate directories
8181
echo "Copying files..."

resources/views/partials/footer.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<div class="row text-center align-items-center flex-row-reverse">
44
<div class="col-lg-auto ms-lg-auto">
55
<ul class="list-inline list-inline-dots mb-0">
6-
<li class="list-inline-item"><a href="https://github.com/getnamingo/dnspanel/blob/main/LICENSE" target="_blank" class="link-secondary" rel="noopener">License</a></li>
7-
<li class="list-inline-item"><a href="https://github.com/getnamingo/dnspanel" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
6+
<li class="list-inline-item"><a href="https://github.com/getnamingo/domain-manager/blob/main/LICENSE" target="_blank" class="link-secondary" rel="noopener">License</a></li>
7+
<li class="list-inline-item"><a href="https://github.com/getnamingo/domain-manager" target="_blank" class="link-secondary" rel="noopener">Source code</a></li>
88
</ul>
99
</div>
1010
<div class="col-12 col-lg-auto mt-3 mt-lg-0">

0 commit comments

Comments
 (0)