asdf

  • Mohammad Iskandarany
Channel Revision Published Runs on
latest/beta 1 02 Aug 2024
Ubuntu 22.04
juju deploy moes-charm --channel beta
Show information

Platform:

Learn about configurations >

  • flask-application-root | string

    Path in which the application / web server is mounted. This configuration will set the FLASK_APPLICATION_ROOT environment variable. Run app.config.from_prefixed_env() in your Flask application in order to receive this configuration.

  • flask-debug | boolean

    Whether Flask debug mode is enabled.

  • flask-env | string

    What environment the Flask app is running in, by default it's 'production'.

  • flask-permanent-session-lifetime | int

    Time in seconds for the cookie to expire in the Flask application permanent sessions. This configuration will set the FLASK_PERMANENT_SESSION_LIFETIME environment variable. Run app.config.from_prefixed_env() in your Flask application in order to receive this configuration.

  • flask-preferred-url-scheme | string

    Default: HTTPS

    Scheme for generating external URLs when not in a request context in the Flask application. By default, it's "HTTPS". This configuration will set the FLASK_PREFERRED_URL_SCHEME environment variable. Run app.config.from_prefixed_env() in your Flask application in order to receive this configuration.

  • flask-secret-key | string

    The secret key used for securely signing the session cookie and for any other security related needs by your Flask application. This configuration will set the FLASK_SECRET_KEY environment variable. Run app.config.from_prefixed_env() in your Flask application in order to receive this configuration.

  • webserver-keepalive | int

    Time in seconds for webserver to wait for requests on a Keep-Alive connection.

  • webserver-threads | int

    Run each webserver worker with the specified number of threads.

  • webserver-timeout | int

    Time in seconds to kill and restart silent webserver workers.

  • webserver-workers | int

    The number of webserver worker processes for handling requests.