blob: 74bf2e5d202c65449a6af4e152207405eafdcd9b (
plain) (
tree)
|
|
{}:
let
ympd = rec {
config = {
webPort = "localhost:18001";
mpd = {
host = "malige.home.immae.eu";
port = 6600;
};
};
apache = {
modules = [
"proxy_wstunnel"
];
vhostConf = ''
<LocationMatch "^/mpd">
Use LDAPConnect
Require ldap-group cn=users,cn=mpd,ou=services,dc=immae,dc=eu
Require local
</LocationMatch>
RedirectMatch permanent "^/mpd$" "/mpd/"
<Location "/mpd/">
ProxyPass http://${config.webPort}/
ProxyPassReverse http://${config.webPort}/
ProxyPreserveHost on
</Location>
<Location "/mpd/ws">
ProxyPass ws://${config.webPort}/ws
</Location>
'';
};
};
in
ympd
|