Version 0.9501 information

This commit is contained in:
Eduardo Silva 2024-03-04 13:10:57 -03:00
parent b6a7cdaac9
commit 6d30dae51c
3 changed files with 4 additions and 12 deletions

View File

@ -4,6 +4,7 @@ wireguard_webadmin is a full-featured yet easy-to-configure web interface for ma
## Features ## Features
- **Advanced Firewall Management**: Experience effortless and comprehensive VPN firewall management, designed for simplicity and effectiveness.
- **Port Forwarding**: Seamlessly redirect TCP or UDP ports to peers or networks located beyond those peers with ease! - **Port Forwarding**: Seamlessly redirect TCP or UDP ports to peers or networks located beyond those peers with ease!
- **Multi-User Support**: Manage access with different permission levels for each user. - **Multi-User Support**: Manage access with different permission levels for each user.
- **Multiple WireGuard Instances**: Enables separate management for peers across multiple instances. - **Multiple WireGuard Instances**: Enables separate management for peers across multiple instances.

View File

@ -4,22 +4,13 @@
<h1>Welcome to WireGuard WebAdmin</h1> <h1>Welcome to WireGuard WebAdmin</h1>
<p>WireGuard WebAdmin is a web-based interface designed for managing WireGuard VPN, a remarkably simple, fast, and modern VPN that employs cutting-edge cryptography.</p> <p>WireGuard WebAdmin is a web-based interface designed for managing WireGuard VPN, a remarkably simple, fast, and modern VPN that employs cutting-edge cryptography.</p>
<p>I have dedicated significant effort to this project over the past few weeks and am thrilled to announce that the primary functionalities are performing as anticipated!</p> <p>I have dedicated significant effort to this project over the past few weeks and am thrilled to announce that we are now close to version 1.0</p>
<p>I just introduced the port forwarding feature. It is functioning well, aside from a few minor issues that I intend to resolve shortly.</p>
<h3>Known Port Forwarding Issues</h3>
<ul>
<li>Upon creating a port forwarding rule and updating the service, an initial reload may trigger a warning. This is due to the PostDown script's inability to remove a rule that does not yet exist.</li>
<li>Unchecking "Allow Forward" or "Masquerade Source" and then updating the service, fails to properly remove the corresponding iptables rules.</li>
<li>Deleting a rule and reloading the service does not properly remove the corresponding iptables rules.</li>
</ul>
<p>These issues are on my radar for fixes in the near future. In the meantime, restarting the main Docker container will cause the firewall to rebuild as expected, eliminating any lingering rules.</p>
<br> <br>
<h3>Upcoming Enhancements</h3> <h3>Upcoming Enhancements</h3>
<ul> <ul>
<li>Implementing AllowedIPs in the client configuration.</li> <li>Implementing AllowedIPs in the client configuration.</li>
<li>Revising the firewall logic for PostUp/PostDown scripts.</li> <li>Improving "Pending changes" notification and separation (WireGuard from Firewall)</li>
<li>Developing a straightforward firewall management interface.</li>
</ul> </ul>
<p>Stay tuned to our GitHub page for imminent updates to this project.</p> <p>Stay tuned to our GitHub page for imminent updates to this project.</p>

View File

@ -129,6 +129,6 @@ STATICFILES_DIRS = [
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
WIREGUARD_WEBADMIN_VERSION = 9201 WIREGUARD_WEBADMIN_VERSION = 9501
from wireguard_webadmin.production_settings import * from wireguard_webadmin.production_settings import *