mirror of
https://github.com/tanrax/slack-clone-using-HTML-over-the-Wire.git
synced 2026-08-14 17:53:13 +02:00
18 lines
285 B
Caddyfile
18 lines
285 B
Caddyfile
http://chat.localhost {
|
|
|
|
root * /usr/src/app/
|
|
encode gzip zstd
|
|
|
|
@notStatic {
|
|
not path /static/* /media/*
|
|
}
|
|
|
|
reverse_proxy @notStatic django:8000
|
|
|
|
file_server /static/*
|
|
file_server /media/*
|
|
}
|
|
|
|
http://webmail.localhost {
|
|
reverse_proxy mailhog:8025
|
|
} |