philomena/lib/philomena_web/endpoint.ex

57 lines
1.6 KiB
Elixir
Raw Normal View History

2019-08-15 02:32:32 +02:00
defmodule PhilomenaWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :philomena
socket "/socket", PhilomenaWeb.UserSocket,
websocket: true,
longpoll: false
2019-11-16 01:40:32 +01:00
# Overwrite remote_ip based on X-Forwarded-For
plug RemoteIp
2019-08-15 02:32:32 +02:00
# Serve at "/" the static files from "priv/static" directory.
#
# You should set gzip to true if you are running phx.digest
# when deploying your static files in production.
plug Plug.Static,
at: "/",
from: :philomena,
gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt)
# Code reloading can be explicitly enabled under the
# :code_reloader configuration of your endpoint.
if code_reloading? do
socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket
plug Phoenix.LiveReloader
plug Phoenix.CodeReloader
end
plug Plug.RequestId
plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint]
plug Plug.Parsers,
parsers: [:urlencoded, :multipart, :json],
pass: ["*/*"],
json_decoder: Phoenix.json_library()
plug Plug.MethodOverride
plug Plug.Head
# The session will be stored in the cookie and signed,
# this means its contents can be read but not tampered with.
# Set :encryption_salt if you would also like to encrypt it.
plug Plug.Session,
store: :cookie,
key: "_philomena_key",
2019-08-16 02:28:12 +02:00
signing_salt: "signed cookie",
encryption_salt: "authenticated encrypted cookie"
2019-08-15 02:32:32 +02:00
2019-10-31 18:57:39 +01:00
plug Pow.Plug.Session, otp_app: :philomena
plug PowPersistentSession.Plug.Cookie, otp_app: :philomena
plug PhilomenaWeb.Plugs.ReloadUser
2019-08-16 02:28:12 +02:00
plug PhilomenaWeb.Plugs.RenderTime
2019-11-16 01:40:32 +01:00
plug PhilomenaWeb.Plugs.Referrer
2019-08-15 02:32:32 +02:00
plug PhilomenaWeb.Router
end