Sponsored Content
Operating Systems Linux Ubuntu can't enable ssl in apache2 "Apache2 + openssl" Post 302483535 by DGPickett on Monday 27th of December 2010 03:59:07 PM
Old 12-27-2010
Is the location of the ssl dynamic libs in the $LD_LIBRARY_PATH for apache?
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell Script to provide "answers" to SSL Cert Request

Hello, I need assistance with creating a shell script to generate SSL Certificate Requests on remote hosts. Below is my stab at this, but I cannot figure out how to pass the requested arguments into the openssl command correctly. I have a major problem with redirecting the "answers" into the... (2 Replies)
Discussion started by: azvelocat
2 Replies

2. OS X (Apple)

Weird "security" bahavior with SSL certificates

Hello, I have been attempting to automate the addition of SSL certificates to keychains on a MAC using the "security" command. I've noticed two things, 1 of which I don't understand. 1. If I use something like "security add-trusted-cert -d -k /System/Library/Keychains/SystemRootCertificates... (1 Reply)
Discussion started by: prafulnama
1 Replies

3. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

4. OS X (Apple)

Trying to enable "web sharing" from terminal

I am using phproxy on my mac. I would like to be able to enable / disable web sharing from the command line, so I can turn it on only when I need it(remotely). I remember reading that the "screen sharing" can be set on/off in /Library/Preferences I don't see any obvious preferences for "web... (3 Replies)
Discussion started by: chancho
3 Replies

5. Shell Programming and Scripting

How to enable "banner" for a user in solaris?

Password: Using keyboard-interactive authentication. Do you agree with the banner terms (y/n)?: y (4 Replies)
Discussion started by: frintocf
4 Replies

6. AIX

Bison -pap_expr_yy invalid character:% unexpected "identifier" while running make for Apache2.4.3 64

The Follwing packages are installed on my AIX 6.1 box gcc-4.7.2-1 gcc-c++-4.7.2-1 gcc-cpp-4.7.2-1 gcc-gfortran-4.7.2-1 libgcc-4.7.2-1 libgomp-4.7.2-1 libstdc++-4.7.2-1 libstdc++-devel-4.7.2-1 gmp-5.0.5-1 libmpc-1.0.1-2 libmpc-devel-1.0.1-2 libmpcdec-1.2.6-1 libmpcdec-devel-1.2.6-1... (0 Replies)
Discussion started by: Ashish Gupta
0 Replies

7. AIX

How to enable "TCP MD5 Signatures" and "https" on AIX?

I have searched many times but nothing found. Somebody help please :(:(:( (1 Reply)
Discussion started by: bobochacha29
1 Replies

8. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies
Apache2::AuthCASSimple(3pm)				User Contributed Perl Documentation			       Apache2::AuthCASSimple(3pm)

NAME
Apache2::AuthCASSimple - Apache2 module to authentificate through a CAS server DESCRIPTION
Apache2::AuthCASSimple is an authentication module for Apache2/mod_perl2. It allow you to authentificate users through a Yale CAS server. It means you don't need to give login/password if you've already be authentificate by the CAS server, only tickets are exchanged between Web client, Apache2 server and CAS server. If you not're authentificate yet, you'll be redirect on the CAS server login form. This module allow the use of simple text files for sessions. SYNOPSIS
PerlOptions +GlobalRequest <Location /protected> AuthType Apache2::AuthCASSimple PerlAuthenHandler Apache2::AuthCASSimple PerlSetVar CASServerName my.casserver.com PerlSetVar CASServerPath / # PerlSetVar CASServerPort 443 # PerlSetVar CASServerNoSSL 1 PerlSetVar CASSessionTimeout 3660 PerlSetVar CASSessionDirectory /tmp # PerlSetVar CASFixDirectory / # PerlSetVar ModProxy 1 # PerlSetVar HTTPSServer 1 require valid-user </Location> or order deny,allow deny from all require user xxx yyyy satisfy any CONFIGURATION
CASServerName Name of the CAS server. It can be a numeric IP address. CASServerPort Port of the CAS server. Default is 443. CASServerPath Path (URI) of the CAS server. Default is "/cas". CASServerNoSSL Disable SSL transaction wih CAS server (HTTPS). Default is off. CASCaFile CAS server public key. This file is used to allow secure connection between the webserver using Apache2::AuthCASSimple and the CAS server. DEPRECATED : Authen::CAS::Client use LWP::UserAgent to make https requests CASSessionTimeout Timeout (in second) for session create by Apache2::AuthCASSimple (to avoid CAS server overloading). Default is 60. -1 means disable. 0 mean infinite (until the user close browser). CASSessionDirectory Directory where session data are stored. Default is /tmp. CASFixDirectory Force the path of the session cookie for same policy in all subdirectories else current directory is used. ModProxy Apache2 mod_perl2 don't be use with mod_proxy. Default is off. HTTPSServer If you want to keep a HTTPS server for all data. Default is 0. OK AUTH_REQUIRED DECLINED REDIRECT SERVER_ERROR M_GET Apache constants to make pod coverage happy METHOD
handler call by apache2 VERSION
This documentation describes Apache2::AuthCASSimple version 0.10 BUGS AND TROUBLESHOOTING
o Old expired sessions files must be deleted with an example provided script : "delete_session_data.pl" o Apache::Session::Wrapper certainly need Apache2::Cookie o $r must be global for sessions with Apache::Session::Wrapper, add PerlOptions +GlobalRequest in your virtualhost conf o Apreq module must be enable in debian a2enmod apreq or add LoadModule apreq_module /usr/lib/apache2/modules/mod_apreq2.so in your apache configuration file Please submit any bug reports to agostini@univ-metz.fr. NOTES
Requires "mod_perl 2" version 2.02 or later Requires Authen::CAS::Client Requires Apache::Session::Wrapper AUTHOR
Yves Agostini CPAN ID: YVESAGO Univ Metz agostini@univ-metz.fr http://www.crium.univ-metz.fr COPYRIGHT
Copyright (c) 2009 by Yves Agostini This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.10.0 2009-05-10 Apache2::AuthCASSimple(3pm)
All times are GMT -4. The time now is 06:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy