mirror of
https://github.com/tanrax/simple-HTML-over-the-Wire-social-network-with-Django-and-stimulus.git
synced 2026-08-14 17:53:15 +02:00
16 lines
236 B
Caddyfile
16 lines
236 B
Caddyfile
|
|
http://social-network.localhost {
|
|
|
|
root * /usr/src/app/
|
|
encode gzip zstd
|
|
|
|
@notStatic {
|
|
not path /static/* /media/*
|
|
}
|
|
|
|
reverse_proxy @notStatic django:8000
|
|
|
|
file_server /static/*
|
|
file_server /media/*
|
|
}
|