From 85c977e2a0999037756672fd86894f449ad7a209 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 26 Jun 2023 09:51:10 +0000 Subject: [PATCH] features: Drop old features page Signed-off-by: Michael Tremer --- Makefile.am | 1 - src/templates/static/features.html | 284 ----------------------------- src/web/__init__.py | 2 +- 3 files changed, 1 insertion(+), 286 deletions(-) delete mode 100644 src/templates/static/features.html diff --git a/Makefile.am b/Makefile.am index 3716ff20..6f898a25 100644 --- a/Makefile.am +++ b/Makefile.am @@ -290,7 +290,6 @@ templates_people_modules_DATA = \ templates_people_modulesdir = $(templates_peopledir)/modules templates_static_DATA = \ - src/templates/static/features.html \ src/templates/static/legal.html \ src/templates/static/help.html diff --git a/src/templates/static/features.html b/src/templates/static/features.html deleted file mode 100644 index 313ee978..00000000 --- a/src/templates/static/features.html +++ /dev/null @@ -1,284 +0,0 @@ -{% extends "../base.html" %} - -{% block title %}{{ _("Features") }}{% end block %} - -{% block container %} -
-
-
-
-

{{ _("Features") }}

- -

- {{ _("IPFire is a powerful and professional Open Source firewall solution") }} -
- {{ _("Learn what it can do") }} -

-
-
-
-
- -
-
-
-
- -
- -
-

{{ _("Security") }}

- -

- The primary objective of IPFire is security. - Its easy to configure firewall engine and Intrusion Detection System - prevent any attackers from breaking into your network. - In the default configuration, the network is split into various zones - with different security policies such as a LAN and DMZ to manage - risks inside the network and have custom configuration for the specific - needs of each segment of the network. -

- -

- But even the firewall needs to protect itself. - IPFire is built from scratch and not based on any other distribution. - This allows the developers to harden IPFire better than any other - server operating system and build all components specifically for use - as a firewall. -

- -

- Frequent updates keep IPFire strong against security vulnerabilities - and new attack vectors. -

-
-
-
-
- -
-
-
-
- -
- -
-

{{ _("Firewall") }}

- -

- IPFire employs a Stateful Packet Inspection (SPI) firewall, - which is built on top of Netfilter, the Linux packet filtering framework. - It filters packets fast and achieves throughputs of up to multiple - tens of Gigabit per second. -

- -

- Its intuitive web user interface allows to create groups of hosts and - networks which can be used to keep large set of rules short and tidy - - something very important in complex environments with strict access control. - Logging and graphical reports give great insight. -

- -

- Various settings are available to mitigate and block Denial-of-Service - attacks by filtering them directly at the firewall and not allowing them - to take down your servers. -

- -

- - Firewall Documentation - -

- -

Intrusion Detection/Prevention System

- -

- IPFire's Intrusion Detection System (IDS) analyzes network traffic and tries to - detect exploits, leaking data and any other suspicious activity. - Upon detection, alerts are raised and the attacker is immediately blocked. -

- -

- - Documentation - -

-
-
-
-
- -
-
-
-
- -
- -
-

{{ _("Connecting the World") }}

- -

- Virtual Private Networks (VPNs) connect remote locations like data centers, - branch offices or outsourced infrastructure via an encrypted link. - IPFire allows staff to work remotely as if they would be sitting in the office - and allowing them to access all resources that they need - fast and securely. -

- -

- IPFire supports industry standards like IPsec and OpenVPN and interoperates with - equipment from various vendors like Cisco & Juniper. - VPNs are quickly and easily set up with IPFire and employ latest cryptography. -

- - -
-
-
-
- -
-
-
-
- -
- -
-

{{ _("Add-ons") }}

- -

- From a technical point of view, IPFire is a minimalistic, hardened operating system. - To provide more functionality, it can be extended by add-ons which are installed with - IPFire's own package management system called Pakfire. -

- -

- Add-ons can be handy command line tools for administrators or can extend the system - to provide additional functionality. Those include: - -

    -
  • - Turning IPFire into a Wireless Access Point -
  • - -
  • - Tools for Monitoring and System Health Management -
  • - -
  • - Backup, File and Print Services -
  • - -
  • - Running a Tor node -
  • - -
  • - Proxies and Relays for various protocols -
  • - -
  • - and many more... -
  • -
- - - List of all Add-ons - -

-
-
-
-
- -
-
-
-
- -
- -
-

{{ _("Making Your Internet Faster") }}

- -

- The IPFire Quality of Service (QoS) categorizes network traffic and sends it out - prioritized by how important it is to ensure a good service. - For example, a Voice-over-IP call will always have priority over a large download - to ensure that words will never get lost and call quality is always the best it can be. -

- -

- Even on very busy links, IPFire will make sure that websites load fast and that the - network is quick and responsive by using smart queueing algorithms and getting the - most out of your bandwidth. -

- -

- - Documentation - -

-
-
-
-
- -
-
-
-
- -
- -
-

{{ _("Web proxy") }}

- -

- One of the most commonly used features of IPFire is the full-fledged web proxy. - It delivers and filters web content and can only allow Internet access for some - users. -

- -

- Caching content on the firewalls disk makes websites load faster. - External regularly updated blacklists allow banning browsing on various websites - when they are for example not suitable for students. - Optionally, the IPFire web proxy can transparently scan for viruses and block - them straight away. -

- -

- The web proxy makes IPFire perfect for schools and universities where - access control and logging is required. -

- -

- - Documentation - -

-
-
-
-
-{% end block %} diff --git a/src/web/__init__.py b/src/web/__init__.py index 732fd5a5..c1aaf53b 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -175,11 +175,11 @@ class Application(tornado.web.Application): (r"/news/(.*)", handlers.NewsHandler), # Static Pages - (r"/features", StaticHandler, { "template" : "features.html" }), (r"/legal", StaticHandler, { "template" : "legal.html" }), (r"/help", StaticHandler, { "template" : "help.html" }), # Handle old pages that have moved elsewhere + (r"/features", tornado.web.RedirectHandler, { "url" : "/about" }), (r"/imprint", tornado.web.RedirectHandler, { "url" : "/legal" }), (r"/(de|en)/(.*)", LangCompatHandler), (r"/support", tornado.web.RedirectHandler, { "url" : "/help"}), -- 2.47.3