Skip to content

Commit

Permalink
revert .env to origin master
Browse files Browse the repository at this point in the history
  • Loading branch information
IktaS committed Oct 29, 2023
1 parent 3de8b66 commit 252820c
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -22,47 +22,47 @@
# Enables administrator interface at yourserver.com/admin/
# if set, disables it if unset. If admin username is set but
# admin password is not, just leave the password field empty
# when logging in.
# when logging in.
# Default value: admin
export MICROBIN_ADMIN_USERNAME=admin

# Enables administrator interface at yourserver.com/admin/
# if set, disables it if unset. Will not have any affect
# unless admin username is also set. If admin username is
# set but admin password is not, just leave the password
# field empty when logging in.
# field empty when logging in.
# Default value: m1cr0b1n
export MICROBIN_ADMIN_PASSWORD=m1cr0b1n

# Enables editable pastas. You will still be able to make
# finalised pastas but there will be an extra checkbox to
# make your new pasta editable from the pasta list or the
# pasta view page.
# Default value: 8080
# Default value: 8080
export MICROBIN_EDITABLE=true

# Replaces the default footer text with your own. If you
# want to hide the footer, use the hide footer option instead.
# Note that you can also embed HTML here, so you may want to escape
# Note that you can also embed HTML here, so you may want to escape
# '<', '>' and so on.
# export MICROBIN_FOOTER_TEXT=

# Hides the navigation bar on every page.
# Default value: 8080
# Default value: 8080
export MICROBIN_HIDE_HEADER=false

# Hides the footer on every page.
# Default value: 8080
# Default value: 8080
export MICROBIN_HIDE_FOOTER=false

# Hides the MicroBin logo from the navigation bar on every
# page.
# Default value: 8080
# Default value: 8080
export MICROBIN_HIDE_LOGO=false

# Disables the /pastalist endpoint, essentially making all
# pastas private.
# Default value: 8080
# Default value: 8080
export MICROBIN_NO_LISTING=false

# Enables syntax highlighting support. When creating a new
Expand All @@ -77,7 +77,7 @@ export MICROBIN_PORT=8080

# Sets the bind address for the server will be listening on.
# Both ipv4 and ipv6 are supported. Default value: "0.0.0.0".
# Example value: "myserver.net", "127.0.0.1".
# Example value: "myserver.net", "127.0.0.1".
export MICROBIN_BIND="0.0.0.0"

# Enables private pastas. Adds a new checkbox to make your
Expand All @@ -90,16 +90,16 @@ export MICROBIN_PRIVATE=true
# DEPRECATED: Will be removed soon. If you want to change styling (incl. removal), use custom CSS variable instead.
# Disables main CSS styling, just uses a few in-line
# stylings for the layout. With this option you will lose
# dark-mode support.
# dark-mode support.
export MICROBIN_PURE_HTML=false

# Sets the name of the directory where MicroBin creates
# Sets the name of the directory where MicroBin creates
# its database and stores attachments.
# Default value: microbin_data
export MICROBIN_DATA_DIR="microbin_data"

# Enables storing pasta data (not attachments and files) in
# a JSON file instead of the SQLite database.
# a JSON file instead of the SQLite database.
# Default value: false
export MICROBIN_JSON_DB=false

Expand All @@ -108,7 +108,7 @@ export MICROBIN_JSON_DB=false
# Note that MicroBin itself still expects all routes to be
# as without this option, and thus is unsuited if you are
# running MicroBin directly. Default value: unset. Example
# values: https://myserver.com/ or https://192.168.0.10:8080/
# values: https://myserver.com/ or https://192.168.0.10:8080/
# export MICROBIN_PUBLIC_PATH=

# Sets a shortened path to use when the user copies URL from
Expand All @@ -130,7 +130,7 @@ export MICROBIN_READONLY=false
export MICROBIN_SHOW_READ_STATS=true

# Adds your title of choice to the
# navigation bar.
# navigation bar.
# Default value: unset
# export MICROBIN_TITLE=

Expand All @@ -142,8 +142,8 @@ export MICROBIN_THREADS=1

# Sets the garbage collector time limit. Pastas not accessed
# for N days are removed even if they are set to never
# expire.
# Default value: 90.
# expire.
# Default value: 90.
# To turn off GC: 0.
export MICROBIN_GC_DAYS=90

Expand Down Expand Up @@ -187,7 +187,7 @@ export MICROBIN_NO_FILE_UPLOAD=false

# Replaced the built-in water.css stylesheet with the URL
# you provide. Default value: unset. Example value:
# https://myserver.net/public/mystyle.css
# https://myserver.net/public/mystyle.css
# export MICROBIN_CUSTOM_CSS=

# Use short hash strings in the URLs instead of animal names
Expand Down Expand Up @@ -227,11 +227,11 @@ export MICROBIN_MAX_FILE_SIZE_UNENCRYPTED_MB=2048
export MICROBIN_DISABLE_UPDATE_CHECKING=false

# Disables telemetry if set to true.
# Telemetry includes your configuration and helps development.
# Telemetry includes your configuration and helps development.
# It does not include any sensitive data.
# Default value: false
export MICROBIN_DISABLE_TELEMETRY=false

# Enables listing your server in the public MicroBin server list.
# Default value: false
export MICROBIN_LIST_SERVER=false
export MICROBIN_LIST_SERVER=false

0 comments on commit 252820c

Please sign in to comment.