Witam!
nie wiem czy to dobre miejsce by zapytac, ale sadze ze tak. Mam pytanie w sprawie apache'a. Potrzebuje skonfigurowac virtualhost w pliku http.conf. Chcialem tam umiescic pewne zmienne globalne, ale nie wiem jak to zrobic. Probowalem zrobic cos w tym stylu:
<VirtualHost *>
DirectoryIndex index.html
DocumentRoot /www/xxx.com/
ServerName www.xxx.dev.is-teledata.com
ServerAlias www.xxx.dev.is-italy.com
ErrorLog "/usr/local/apache/logs/xxx.com/www/error.log"
CustomLog "/usr/local/apache/logs/xxx.com/www/access.log" combined
<Directory /www/xxx.com/>
setenv SITE "xxx.com"
setenv DOMAIN ".xxx.dev.is-italy.com"
setenv ID_CUST "xxx"
AllowOverride None
Options +Indexes +Includes
</Directory>
# PHP-VALUES FOR SESSION
# whether to use cookies
php_value session.use_cookies 0
# name of session
php_value session.name SID
# after this number of seconds, stored
# this time must be the same as $SESSION_CONFIG['SESSION_TIME']
php_value session.gc_maxlifetime 43200
# the domain for the cookie
php_value session.cookie_domain .xxx.dev.is-italy.com
</VirtualHost>
...ale nic z tego. Apache nie chce sie uruchomic. Czy ktos z was ma jakis pomysl dlaczego to nie dziala i jak temu zaradzic. Z gory wielkie dzieki!