git: 310081a435 - main - website/internal: Update outdated information

From: Danilo G. Baio <dbaio_at_FreeBSD.org>
Date: Fri, 25 Nov 2022 00:03:34 UTC
The branch main has been updated by dbaio:

URL: https://cgit.FreeBSD.org/doc/commit/?id=310081a43518f7b1c2dbfded8ea893a594b036f5

commit 310081a43518f7b1c2dbfded8ea893a594b036f5
Author:     Danilo G. Baio <dbaio@FreeBSD.org>
AuthorDate: 2022-11-23 23:50:28 +0000
Commit:     Danilo G. Baio <dbaio@FreeBSD.org>
CommitDate: 2022-11-25 00:01:36 +0000

    website/internal: Update outdated information
    
    The build schedule is now simpler.
    
    Remove the mirror page, which describes how to mirror the website, a
    feature that is not working anymore, and there is no plan to make it
    available again.
    
    While here, also add a note about Varnish Cache that works with NGINX
    and is widely used in the FreeBSD infrastructure.
    
    Reviewed by:    lwhsu
    Differential Revision: https://reviews.freebsd.org/D37492
---
 website/content/en/internal/about.adoc  | 17 +++++------------
 website/content/en/internal/mirror.adoc | 20 --------------------
 2 files changed, 5 insertions(+), 32 deletions(-)

diff --git a/website/content/en/internal/about.adoc b/website/content/en/internal/about.adoc
index 23014661c8..3b8246134b 100644
--- a/website/content/en/internal/about.adoc
+++ b/website/content/en/internal/about.adoc
@@ -34,7 +34,9 @@ A list of general-access machines in the FreeBSD.org domain is available at the
 
 == The Software
 
-These pages are served up by the fast and flexible http://www.nginx.org/[nginx webserver]. In addition, there are a few locally crafted CGI scripts. Indexing of the mailing list archive are provided by freewais-sf, a derivative of the CNIDR freewais.
+These pages are served up by the fast and flexible http://www.nginx.org/[NGINX webserver] and https://varnish-cache.org/[Varnish HTTP Cache].
+In addition, there are a few locally crafted CGI scripts.
+Indexing of the mailing list archive are provided by freewais-sf, a derivative of the CNIDR freewais.
 
 == The Pages
 
@@ -51,10 +53,6 @@ The current website design was done by Emily Boyd as part of the https://summero
 
 The original page design was done by Megan McCormack.
 
-== link:{fdp-primer}#the-website-build[Building and updating the FreeBSD Web Pages]
-
-This document describes how to build and update the FreeBSD Web pages from the Git repository by hand.
-
 == Update of the FreeBSD Web Pages
 
 The FreeBSD Web Pages on `www.FreeBSD.org` are currently rebuilt according to the following schedule:
@@ -63,14 +61,9 @@ The FreeBSD Web Pages on `www.FreeBSD.org` are currently rebuilt according to th
 [cols=",",options="header",]
 |===
 |Build Time (UTC) |Build type
-|Every 10 minutes |English www only, if no other build is running
-|Every Sunday at 00:00 |Full build with a new tree checkout
-|Every 1 hour |English only
-|Every 3 hours |Full build
+|Every 10 minutes |If there is a change in the https://cgit.freebsd.org/doc/log/[doc repository]
 |===
 
-== Mirroring the FreeBSD Web Pages
-
-It is possible to link:../mirror[mirror] the FreeBSD web pages on www.FreeBSD.org.
+The document link:{fdp-primer}doc-build/[FreeBSD Documentation Project Primer for New Contributors] describes how to build the FreeBSD documentation from the Git repository.
 
 link:..[FreeBSD Internal Home]
diff --git a/website/content/en/internal/mirror.adoc b/website/content/en/internal/mirror.adoc
deleted file mode 100644
index 6780b9aff3..0000000000
--- a/website/content/en/internal/mirror.adoc
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: "Mirroring the FreeBSD Web Pages"
-sidenav: docs
----
-
-= Mirroring the FreeBSD Web Pages
-
-It is possible to mirror the FreeBSD web pages `www.FreeBSD.org`. This can be done using a program called _rsync_. rsync is a software package in the Ports Collection for distributing and updating collections of files across a network.
-
-== Running rsync
-
-If you keep your mirrored FreeBSD web pages in the directory `/usr/FreeBSD-mirror` and are owned by the user "fred", then run the following command as user "fred":
-
-....
-     $ rsync -vaHz --delete rsync://bit0.us-west.freebsd.org/FreeBSD-www-data/ /usr/FreeBSD-mirror/
-....
-
-This will mirror the FreeBSD web pages into `/usr/FreeBSD-mirror`. You can install this into fred's crontab, so that it runs once a day.
-
-link:..[FreeBSD Internal Home]