WCM Forum

WCM Forum (http://www.wcm.at/forum/index.php)
-   Internet (http://www.wcm.at/forum/forumdisplay.php?f=8)
-   -   apache mit ssl (http://www.wcm.at/forum/showthread.php?t=126300)

Nightman 25.02.2004 16:13

professional hat auch iis 5.0 dabei :) zumindest meine version

chrisne 25.02.2004 17:14

Zitat:

Original geschrieben von Nightman
professional hat auch iis 5.0 dabei :) zumindest meine version
nicht nur deine :)

Nightman 25.02.2004 18:25

nein echt ohne scheiss

da ein pic meines Laptop's mit IIS 5.0 und Win2000 Pro

http://www.nightman.at/wcm/apache mi...2000proIIS.gif

und was sagts jetzt?

Philipp 25.02.2004 22:35

Zitat:

Original geschrieben von Nightman
professional hat auch iis 5.0 dabei :) zumindest meine version
Nur ist diese Version von IIS sehr eingeschänkt und nicht für den Serverbetrieb gedacht.

Nightman 25.02.2004 22:46

das könnte sein

hab es eigentlich nur als asp testserver für unterwegs :)

fenster 26.02.2004 12:41

apache funzt nicht
 
hallo


mein apache läuft zwar aber ich kann
keine seite aufrufen

als ich noch kein ssl instaliert hatte
ging es noch

vielleicht könnt ihr mal mein config file
ansehen


___________________________________________

# Allgemeine Einstellungen
ServerType standalone
ServerRoot "c:/intranet/Apache"
PidFile logs/httpd.pid
ScoreBoardFile logs/apache_runtime_status
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MaxRequestsPerChild 0
ThreadsPerChild 50

# Servereinstellungen
# Port 80
ServerAdmin xxxxx@gmx.at
# Falls Sie als ServerName "webserver" verwenden wollen, dann
# tragen Sie bitte folgendes in Ihre hosts-Datei
# (vg. http://www.netzadmin.org/theorie/hosts-datei.htm)
# ein: 192.168.0.1 webserver
# Ansonsten verwenden Sie bitte als ServerName localhost
ServerName webserver
UseCanonicalName Off
DocumentRoot "c:/Programme/Macromedia/Flash Communication Server MX/flashcom/applications/meinChat"
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>

<Directory "c:/intranet/Apache/htdocs">
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride All
Order allow,deny
Allow from all
</Directory>

DirectoryIndex index.html index.htm index.shtml index.cgi index.php index.php4 index.phtml
ServerSignature On

# .htaccess-Dateien
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>

TypesConfig conf/mime.types
DefaultType text/plain

# Log-Files
HostnameLookups Off
ErrorLog logs/error.log
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
CustomLog logs/access.log combined

Alias /icons/ "c:/intranet/Apache/icons/"
<Directory "c:/intranet/Apache/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

Alias /manual/ "c:/intranet/Apache/htdocs/manual/"

<Directory "c:/intranet/Apache/htdocs/manual">
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

# CGI-Script Einstellungen
ScriptInterpreterSource registry
AddHandler cgi-script .cgi .pl

ScriptAlias /cgi-bin/ "c:/intranet/Apache/cgi-bin/"
<Directory "c:/intranet/Apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>

IndexOptions FancyIndexing
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*

AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^

DefaultIcon /icons/unknown.gif
ReadmeName README
HeaderName HEADER
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
AddLanguage en .en
AddLanguage fr .fr
AddLanguage de .de
AddCharset WINDOWS-1251 .cp-1251
AddCharset CP866 .cp866
AddCharset ISO-8859-5 .iso-ru
AddCharset KOI8-R .koi8-r
AddCharset UCS-2 .ucs2
AddCharset UCS-4 .ucs4
AddCharset UTF-8 .utf8

<IfModule mod_negotiation.c>
LanguagePriority de en fr
</IfModule>

AddType application/x-tar .tgz

# SHTML-Dateien
AddType text/html .shtml
AddHandler server-parsed .shtml

<IfModule mod_setenvif.c>
BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0
</IfModule>


# Installation der CGI-Version
# ScriptAlias /php/ "c:/intranet/php/"
# AddType application/x-httpd-php .php .php3 .php4 .phtml
# Action application/x-httpd-php "/php/php.exe"


# Installation der Modul-Version
# AddModule mod_php4.c
# LoadModule php4_module "c:/intranet/Apache/modules/php4apache.dll"
# AddType application/x-httpd-php .php .php4 .php3 .phtml


Listen 80
Listen 443

LoadModule ssl_module c:/intranet/Apache/modules/mod_ssl.so

SSLMutex sem
SSLRandomSeed startup builtin
SSLSessionCache none

SSLLog logs/SSL.log
SSLLogLevel warn

<VirtualHost 192.168.0.1:443>
ServerName localhost
DocumentRoot c:/intranet/apache/ssl
SSLEngine On
SSLCertificateFile conf/ssl/test-zertifikat.crt
SSLCertificateKeyFile conf/ssl/test-zertifikat.key
</VirtualHost>

__________________________________________________

gruß
fenster


Alle Zeitangaben in WEZ +2. Es ist jetzt 06:55 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© 2009 FSL Verlag