This commit is contained in:
Clément OUDOT 2018-05-10 13:10:46 +02:00
parent 231a024606
commit 9f72caa5d8
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ use AuthCAS;
# Configuration
my $host = $ENV{HTTP_HOST};
my ( $domain, $port ) = ( $host =~ /\w+\.([^:]*?)(:\d+)?/ );
my ( $domain, $port ) = ( $host =~ /\w+\.([^:]+)(:\d+)?/ );
my $protocol = ( $ENV{HTTPS} =~ /^on$/i ) ? "https" : "http";
my $portal_url = "$protocol://auth.$domain$port";
my $cas_url = "$portal_url/cas";

View File

@ -15,7 +15,7 @@ my $color = $cgi->param("color") || "#ddd";
# Local parameters
my $host = $ENV{HTTP_HOST};
my ( $domain, $port ) = ( $host =~ /\w+\.([^:]*?)(:\d+)?/ );
my ( $domain, $port ) = ( $host =~ /\w+\.([^:]+)(:\d+)?/ );
my $protocol = ( $ENV{HTTPS} =~ /^on$/i ) ? "https" : "http";
my $portal_url = "$protocol://auth.$domain$port";
my $manager_url = "$protocol://manager.$domain$port";

View File

@ -19,7 +19,7 @@ use Digest::SHA
# Configuration
#==============================================================================
my $host = $ENV{HTTP_HOST};
my ( $domain, $port ) = ( $host =~ /\w+\.([^:]*?)(:\d+)?/ );
my ( $domain, $port ) = ( $host =~ /\w+\.([^:]+)(:\d+)?/ );
my $protocol = ( $ENV{HTTPS} =~ /^on$/i ) ? "https" : "http";
my $portal_url = "$protocol://auth.$domain$port";
my $client_id = "lemonldap";