Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/src/modules/pxeconfig/mcore-boot.conf.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2764 - (hide annotations) (download)
Tue Feb 9 12:18:21 2016 UTC (8 years, 3 months ago) by niro
File size: 585 byte(s)
-use CONTROLSERVER/boot subdir as boot image path and provide an apache configuration module
1 niro 2764 Alias /boot @@MCORE_CONFIG_PATH@@/boot/
2    
3     <Directory @@MCORE_CONFIG_PATH@@/boot/>
4     Options Indexes FollowSymlinks MultiViews
5    
6     <IfModule mod_authz_core.c>
7     # Apache 2.4
8     <RequireAny>
9     # allow boot from everywhere
10     # you may want to change this to somehting like
11     # Reqire ip 192.168.0.0/24
12     Require all granted
13     </RequireAny>
14     </IfModule>
15     <IfModule !mod_authz_core.c>
16     # Apache 2.2
17     Order Deny,Allow
18     Deny from All
19     # allow boot from everywhere
20     # you may want to change this to somehting like
21     # Allow from 192.168.0.0/24
22     Allow from All
23     </IfModule>
24     </Directory>