Elliptic Curve Crypto:About: Difference between revisions

From Elliptic Curve Crypto
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
* [https://www.mediawiki.org/wiki/MediaWiki MediaWiki]
* [https://www.mediawiki.org/wiki/MediaWiki MediaWiki]
* [https://www.postgresql.org/ PostgreSQL]
* [https://www.postgresql.org/ PostgreSQL]
Currently investigating the possiblity of switching out php-fpm for [https://frankenphp.dev/ FrankenPHP] by [https://les-tilleuls.coop/en Les-Tilleuls.coop] — not to be confused with [https://les-tilleuls.com/ l’Hôtel «Les Tilleuls»].


== Configuration for short publishable URLs ==
== Configuration for short publishable URLs ==
Line 15: Line 17:
Something like this seems to be required.
Something like this seems to be required.


     rewrite   {path} /index.php?title={path}
     rewrite         {path} /index.php?title={path}
 
* [https://caddyserver.com/docs/caddyfile/directives/php_fastcgi <tt>php_fastcgi</tt>]


=== MediaWiki Local Settings ===
=== MediaWiki Local Settings ===
Line 47: Line 51:
$wgArticlePath = $wgActionPaths['view'];
$wgArticlePath = $wgActionPaths['view'];
</syntaxhighlight>
</syntaxhighlight>
== Getting started ==
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]

Latest revision as of 05:33, 2 January 2025

The mark or logo for Elliptic Curve Crypto on the net is the capital letter ‘E’ from the QT Arabian font, navy blue on a transparent background.

The software stack that currently runs this site

Currently investigating the possiblity of switching out php-fpm for FrankenPHP by Les-Tilleuls.coop — not to be confused with l’Hôtel «Les Tilleuls».

Configuration for short publishable URLs

Caddyfile

Something like this seems to be required.

   rewrite         {path}  /index.php?title={path}

MediaWiki Local Settings

This catches and translates most of the URLs with long gobbledegook query strings.

$actions = [
        'edit',
        'watch',
        'unwatch',
        'delete',
        'revert',
        'rollback',
        'protect',
        'unprotect',
        'markpatrolled',
        'render',
        'submit',
        'history',
        'purge',
        'info',
];
foreach ( $actions as $action ) {
  $wgActionPaths[$action] = "/$1/$action";
}
$wgActionPaths['edit'] = "/$1/editsource";
$wgActionPaths['view'] = "/$1";
$wgArticlePath = $wgActionPaths['view'];

Getting started

Consult the User's Guide for information on using the wiki software.