Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Add Module

mauricelambert edited this page Feb 16, 2023 · 2 revisions

Add Module

Build the module

Write in ./scripts/py/hello.py:

def hello(environ, user, server, filename, arguments, inputs, csrf_token=None):
    return "200 OK", {"Content-Type": "text/plain"}, f"Hello {user.name} !"

def page_500(error):
    return error, {"Content-Type": "text/html; charset=utf-8"}, [b"<h1>ERROR 500</h1><br><br>\n\n", error.encode()]

def page_401(error):
    return error, {"Content-Type": "text/html; charset=utf-8"}, [b"<h1>ERROR 401</h1><br><br>\n\n", error.encode()]

def page_403(error):
    return error, {"Content-Type": "text/html; charset=utf-8"}, [b"<h1>ERROR 403</h1><br><br>\n\n", error.encode()]

def page_404(error):
    return error, {"Content-Type": "text/html; charset=utf-8"}, [b"<h1>ERROR 404</h1><br><br>\n\n", error.encode()]

Add configuration

In a server configuration file in server section (using INI syntax):

modules=hello
modules_path=./scripts/py

Load configurations

Restart the server.

Get the pages

Open your web browser on http://127.0.0.1:8000/hello/hello/. To test custom page for error 404: http://127.0.0.1:8000/hello/. To test custom page for error 403: http://127.0.0.1:8000/api/scripts/view_users.py. To test custom page for error 500: http://127.0.0.1:8000/get/.

Clone this wiki locally

Morty Proxy This is a proxified and sanitized view of the page, visit original site.