Changeset 1020
- Timestamp:
- 04/25/06 07:09:10 (3 years ago)
- Files:
-
- trunk/debian/postinst (modified) (1 diff)
- trunk/debian/postrm (modified) (1 diff)
- trunk/etc/alternc/templates/apache-ssl/httpd.conf (modified) (1 diff)
- trunk/etc/alternc/templates/apache/httpd.conf (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/debian/postinst
r1001 r1020 155 155 alternc.install 156 156 157 if [ ! -h /etc/apache/conf.d/alternc-ssl.conf ]; then 158 ln -sf /etc/apache/conf.d/alternc-ssl.conf \ 159 /etc/apache/conf.d/alternc-ssl.conf 160 fi 161 162 if [ ! -h /etc/apache/conf.d/alternc.conf ]; then 163 ln -sf /etc/apache/conf.d/alternc.conf \ 164 /etc/apache/conf.d/alternc.conf 165 fi 166 157 167 ;; 158 168 trunk/debian/postrm
r1019 r1020 24 24 ;; 25 25 remove|upgrade|failed-upgrade|abort-install|abort-upgrade) 26 rm -f /etc/apache/conf.d/override.php.conf 26 rm -f /etc/apache/conf.d/override.php.conf /etc/apache/conf.d/alternc-ssl.conf /etc/apache/conf.d/alternc.conf 27 27 ;; 28 28 disappear) trunk/etc/alternc/templates/apache-ssl/httpd.conf
r943 r1020 261 261 DirectoryIndex index.html index.htm index.shtml index.php3 index.php4 index.phtml index.php 262 262 263 <VirtualHost *:443>264 SSLEnable265 DocumentRoot /var/alternc/bureau266 alias /admin/sql /usr/share/phpmyadmin267 alias /webmail /usr/share/squirrelmail268 Alias /icons/ /usr/share/apache/icons/269 # ***ALTERNC_ALIASES***270 271 </VirtualHost>272 273 263 Include /etc/apache-ssl/conf.d/[^.#]* 274 275 <Directory /var/alternc>276 php_admin_value disable_functions chmod,chown,chgrp,link,symlink277 AllowOverride AuthConfig FileInfo278 Options Indexes Includes FollowSymLinks MultiViews279 Order allow,deny280 Allow from all281 </Directory>282 <Directory /var/alternc/bureau>283 php_admin_flag safe_mode_gid off284 php_admin_flag safe_mode off285 </Directory>286 <Directory /var/alternc/dns/%%fqdn_lettre%%/%%fqdn%%>287 php_admin_flag safe_mode_gid off288 php_admin_flag safe_mode off289 </Directory>290 trunk/etc/alternc/templates/apache/httpd.conf
r857 r1020 41 41 # 42 42 # Please keep this LoadModule: line here, it is needed for installation. 43 LoadModule vhost_alias_module /usr/lib/apache/1.3/mod_vhost_alias.so43 #LoadModule vhost_alias_module /usr/lib/apache/1.3/mod_vhost_alias.so 44 44 LoadModule config_log_module /usr/lib/apache/1.3/mod_log_config.so 45 45 LoadModule mime_module /usr/lib/apache/1.3/mod_mime.so … … 239 239 </IfModule> 240 240 241 <Location /server-status>242 SetHandler server-status243 Order deny,allow244 Deny from all245 Allow from 127.0.0.1246 Allow from %%monitor_ip%%247 </Location>248 249 241 DirectoryIndex index.html index.htm index.shtml index.php3 index.php4 index.phtml index.php 250 242 251 <VirtualHost *:80>252 # ***ALTERNC_ALIASES***253 alias /admin/sql /usr/share/phpmyadmin254 alias /webmail /usr/share/squirrelmail255 Alias /icons/ /usr/share/apache/icons/256 257 UseCanonicalName Off258 VirtualDocumentRoot /var/alternc/dns/%-2.1/%0259 </VirtualHost>260 261 243 Include /etc/apache/conf.d/[^.#]* 262 263 <Directory /var/alternc>264 php_admin_value disable_functions chmod,chown,chgrp,link,symlink265 AllowOverride AuthConfig FileInfo Limit Indexes266 Options Indexes Includes FollowSymLinks MultiViews267 Order allow,deny268 Allow from all269 </Directory>270 <Directory /var/alternc/bureau>271 php_admin_flag safe_mode_gid off272 php_admin_flag safe_mode off273 </Directory>274 <Directory /var/alternc/dns/%%fqdn_lettre%%/%%fqdn%%>275 php_admin_flag safe_mode_gid off276 php_admin_flag safe_mode off277 </Directory>278 279 280
