27 lines
408 B
Caddyfile
27 lines
408 B
Caddyfile
http://project.localhost {
|
|
reverse_proxy gulp:3000
|
|
}
|
|
|
|
http://django.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://gulp-socket.localhost {
|
|
reverse_proxy gulp:3001
|
|
}
|
|
|
|
http://webmail.localhost {
|
|
reverse_proxy mailhog:8025
|
|
}
|