server/nginx_gen_team.sh

9 lines
428 B
Bash
Executable File

#!/bin/sh
# Generate from database (exported XML from the website) the part of nginx
# configuration file authenticating teams
cd $(dirname "$0")
curl http://localhost/$(grep prefix_admin onyx/config/root.xml | sed -E 's@.*<var.*>(.*)</var>.*@\1@')/teams/export 2> /dev/null | grep "<name id" | sed -E 's@^.*id="([0-9]+)".*>(.*)<.*$@ if ($ssl_client_s_dn ~ "/C=FR/ST=France/O=Epita/OU=SRS/CN=\2/") { set $team \1; }@'