[FrontPage] [TitleIndex] [WordIndex

Notes on my Raspberry Pi MoinMoin setup

Changes made to wikiserverconfig.py :

...
    # Werkzeug run_simple arguments below here:

    # use '' for all interfaces or "1.2.3.4" for some specific IP
    hostname = 'localhost'
    # ie. '127.0.0.1'
    # hostname = '192.168.23.99'
    # if you use port < 1024, you need to start as root
    #port = 8080
    port = 8099
...

This enables me to connect to the wiki remotely over the local network at http://localhost:8099 , subject to "tunnelling" having been enabled via a Putty Secure SHell login. (The commented out options would make the web connection http://192.168.23.99:8080 instead)

Changes made to wikiconfig.py:

...
    #DesktopEdition = True # give all local users full powers
    DesktopEdition = False # give all local users full powers
    #acl_rights_default = u"All:read,write,delete,revert,admin"
    acl_rights_default = u'Known:read,write,delete,revert All:read'
    acl_rights_before  = u'TrevorGowen:read,write,admin,delete,revert'
    surge_action_limits = None # no surge protection
    #sitename = u'MoinMoin DesktopEdition'
    sitename = u'MoinMoin DE on RaspberryPi'
...

Wiki running on a "headless" Pi (renamed to raspiblack)

TightVNC_raspiblack#1.png

Now running, still "headless, on raspiblue8Gb

MoinMoinOnRaspiBlue.png



2024-02-11 21:50