]> Sergey Matveev's repositories - godlighty.git/commitdiff
cypherpunks.ru is dead
authorSergey Matveev <stargrave@stargrave.org>
Wed, 4 Dec 2024 10:41:48 +0000 (13:41 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Wed, 4 Dec 2024 10:44:40 +0000 (13:44 +0300)
doc/index.texi
rc/example.cfg/go.go
rc/example.cfg/if.mirror.cypherpunks.su.go [moved from rc/example.cfg/if.mirror.cypherpunks.ru.go with 54% similarity]
rc/example.cfg/lists.cypherpunks.su.go [moved from rc/example.cfg/lists.cypherpunks.ru.go with 94% similarity]
rc/example.cfg/root.go
rc/example.cfg/static.go

index f6851114e16c63b209093f16443458efaf99a13f..f6a05b8bce61d9be0935ae073904ac945d901a37 100644 (file)
@@ -25,8 +25,8 @@ reuse of native libraries capabilities.
 @item Modern, reliable, secure and fast TLS 1.3 implementation with
 ChaCha20-Poly1305, session resumption and SNI.
 
-@item If built with @url{http://www.gostls13.cypherpunks.ru/, gostls13},
-then @url{http://www.gost.cypherpunks.ru/, GOST} TLS 1.3 cryptography
+@item If built with @url{http://www.gostls13.cypherpunks.su/, gostls13},
+then @url{http://www.gost.cypherpunks.su/, GOST} TLS 1.3 cryptography
 will be fully supported, with ability to use GOST-based X.509
 certificates if client announces its knowledge of GOST algorithms (with
 the fallback to ordinary ECDSA/EdDSA ones).
index e2e6bddbbb0fb6e137db4a847502e2d7b7faa879..40e6204004fb3e10d6ab3effb047c6b2be76e110 100644 (file)
@@ -16,6 +16,6 @@ func addGoRepoCfg(host string) {
 }
 
 func init() {
-       addGoRepoCfg("go.cypherpunks.ru")
+       addGoRepoCfg("go.cypherpunks.su")
        addGoRepoCfg("go.stargrave.org")
 }
similarity index 54%
rename from rc/example.cfg/if.mirror.cypherpunks.ru.go
rename to rc/example.cfg/if.mirror.cypherpunks.su.go
index 6743000bc6d34528a1156e5d02c03a8038464ed7..f4d802f03603837824ac189bdf6a108c2b135c29 100644 (file)
@@ -5,11 +5,11 @@ package cfg
 import "go.stargrave.org/godlighty"
 
 func init() {
-       addStaticListedDir("www.if.mirror.cypherpunks.ru", "/storage/if")
-       godlighty.Hosts["www.if.mirror.cypherpunks.ru"].MIMEs = map[string]string{
+       addStaticListedDir("www.if.mirror.cypherpunks.su", "/storage/if")
+       godlighty.Hosts["www.if.mirror.cypherpunks.su"].MIMEs = map[string]string{
                "directory-tree": "text/plain",
                "Index":          "text/plain",
                "Master-Index":   "text/plain",
        }
-       godlighty.Hosts["www.if.mirror.cypherpunks.ru"].Readmes = []string{"Index"}
+       godlighty.Hosts["www.if.mirror.cypherpunks.su"].Readmes = []string{"Index"}
 }
similarity index 94%
rename from rc/example.cfg/lists.cypherpunks.ru.go
rename to rc/example.cfg/lists.cypherpunks.su.go
index f10e4bd2e41b5aaa4e2324d124f90439b779333e..fbe2a27b9a5a7335649488768db80c1a2f805102 100644 (file)
@@ -10,7 +10,7 @@ import (
 )
 
 func init() {
-       host := "lists.cypherpunks.ru"
+       host := "lists.cypherpunks.su"
        godlighty.Hosts[host] = &godlighty.HostCfg{
                Root:     path.Join(WWW, host),
                EdDSATLS: newTLSCfg(host),
index e20228e23e8fcd56f46b048918a02985d0bfc370..529fef686bd1633bc1a83fe0a1515bebab465440 100644 (file)
@@ -6,5 +6,5 @@ var (
        Root   = "/home/lighttpd"
        Etc    = path.Join(Root, "etc")
        WWW    = path.Join(Root, "www")
-       CACert = path.Join(Etc, "ca.cypherpunks.ru.pem")
+       CACert = path.Join(Etc, "ca.cypherpunks.su.pem")
 )
index a28bf779d6630ca8ebaa0e168de84222d121935a..5ee1e7b2b9bd5893b7aac9715f233b98e57c6346 100644 (file)
@@ -32,8 +32,8 @@ func addStaticWebDAVedDir(host, root string) {
 func init() {
        addStaticCfg("www.stargrave.org", "stargrave.org")
 
-       addStaticListedDir("www.mds.cypherpunks.ru", "/storage/audiobook/mds")
+       addStaticListedDir("www.mds.cypherpunks.su", "/storage/audiobook/mds")
 
-       addStaticWebDAVedDir("cpan.mirror.cypherpunks.ru", "/storage/cpan/cpan")
-       addStaticWebDAVedDir("ctan.mirror.cypherpunks.ru", "/storage/ctan/ctan")
+       addStaticWebDAVedDir("cpan.mirror.cypherpunks.su", "/storage/cpan/cpan")
+       addStaticWebDAVedDir("ctan.mirror.cypherpunks.su", "/storage/ctan/ctan")
 }