2021-02-16 19:29:41 +08:00
|
|
|
import Config
|
2021-01-08 03:55:45 +08:00
|
|
|
|
2021-04-15 21:50:29 +08:00
|
|
|
# Default bind and port for production
|
2021-04-27 22:34:02 +08:00
|
|
|
config :livebook, LivebookWeb.Endpoint,
|
2023-10-31 23:36:45 +08:00
|
|
|
http: [
|
|
|
|
ip: {127, 0, 0, 1},
|
|
|
|
port: 8080,
|
2024-05-10 22:42:11 +08:00
|
|
|
http_1_options: [max_header_length: 32768]
|
2023-10-31 23:36:45 +08:00
|
|
|
],
|
2021-04-27 22:34:02 +08:00
|
|
|
server: true
|
2021-01-08 03:55:45 +08:00
|
|
|
|
2022-02-08 21:45:58 +08:00
|
|
|
config :livebook, :iframe_port, 8081
|
|
|
|
|
2022-01-21 16:18:02 +08:00
|
|
|
# Set log level to warning by default to reduce output
|
|
|
|
config :logger, level: :warning
|
2021-04-15 20:15:56 +08:00
|
|
|
|
2021-01-08 03:55:45 +08:00
|
|
|
# ## SSL Support
|
|
|
|
#
|
|
|
|
# To get SSL working, you will need to add the `https` key
|
|
|
|
# to the previous section and set your `:url` port to 443:
|
|
|
|
#
|
2021-03-04 05:56:28 +08:00
|
|
|
# config :livebook, LivebookWeb.Endpoint,
|
2021-01-08 03:55:45 +08:00
|
|
|
# ...
|
|
|
|
# url: [host: "example.com", port: 443],
|
|
|
|
# https: [
|
|
|
|
# port: 443,
|
|
|
|
# cipher_suite: :strong,
|
|
|
|
# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"),
|
|
|
|
# certfile: System.get_env("SOME_APP_SSL_CERT_PATH"),
|
|
|
|
# transport_options: [socket_opts: [:inet6]]
|
|
|
|
# ]
|
|
|
|
#
|
|
|
|
# The `cipher_suite` is set to `:strong` to support only the
|
|
|
|
# latest and more secure SSL ciphers. This means old browsers
|
|
|
|
# and clients may not be supported. You can set it to
|
|
|
|
# `:compatible` for wider support.
|
|
|
|
#
|
|
|
|
# `:keyfile` and `:certfile` expect an absolute path to the key
|
|
|
|
# and cert in disk or a relative path inside priv, for example
|
|
|
|
# "priv/ssl/server.key". For all supported SSL configuration
|
|
|
|
# options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1
|
|
|
|
#
|
|
|
|
# We also recommend setting `force_ssl` in your endpoint, ensuring
|
|
|
|
# no data is ever sent via http, always redirecting to https:
|
|
|
|
#
|
2021-03-04 05:56:28 +08:00
|
|
|
# config :livebook, LivebookWeb.Endpoint,
|
2021-01-08 03:55:45 +08:00
|
|
|
# force_ssl: [hsts: true]
|
|
|
|
#
|
|
|
|
# Check `Plug.SSL` for all available options in `force_ssl`.
|