httpd config can also deal with the python3 wsgi module
[myplc.git] / plc.d / httpd
1 #!/bin/bash
2 #
3 # priority: 600
4 #
5 # Configure Apache web server
6 #
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2006 The Trustees of Princeton University
9 #
10
11 # Source function library and configuration
12 . /etc/plc.d/functions
13 . /etc/planetlab/plc_config
14
15 # Be verbose
16 set -x
17
18 # Default locations
19 DocumentRoot=/var/www/html
20 php_ini=/etc/php.ini
21 httpd_conf=/etc/httpd/conf/httpd.conf
22 ssl_conf=/etc/httpd/conf.d/ssl.conf
23 plc_conf=/etc/httpd/conf.d/plc.conf
24 php_fpm_conf=/etc/php-fpm.d/plc.conf
25 php_fpm_dir=$(dirname $php_fpm_conf)
26
27 function disable_file () {
28     file=$1; shift
29     [ -f $file ] && mv -f $file $file.disabled
30 }
31 function enable_file () {
32     file=$1; shift
33     [ ! -f $file ] && mv -f $file.disabled $file
34 }
35
36 case "$1" in
37     start)
38         if [ "$PLC_API_ENABLED" != "1" -a \
39              "$PLC_BOOT_ENABLED" != "1" -a \
40              "$PLC_WWW_ENABLED" != "1" ] ; then
41             exit 0
42         fi
43
44         MESSAGE=$"Starting web server"
45         dialog "$MESSAGE"
46
47         # set document root - not really useful on fedora but just in case
48         sed -i -e "s@^DocumentRoot.*@DocumentRoot \"$DocumentRoot\"@" $httpd_conf
49         # whether WWW is enabled or not :
50         if [ "$PLC_WWW_ENABLED" != "1" ] ; then
51             # avoid hitting drupal, that would try to connect to the db and create noise
52             disable_file $DocumentRoot/index.php
53         else
54             enable_file $DocumentRoot/index.php
55         fi
56
57         # Set the default include path
58         include_path=".:$DocumentRoot/planetlab/includes:$DocumentRoot/plekit/php:$DocumentRoot/generated:/etc/planetlab/php:/usr/share/plc_api/php"
59         sed -i -e "s@[;]*include_path = \"\.:.*\"@include_path = \"$include_path\"@" $php_ini
60
61         # Set open_basedir so as to avoid leaks
62         open_basedir="$DocumentRoot:/etc/planetlab/php:/usr/share/plc_api/php:/var/log/myslice:/var/tmp/bootmedium:/var/log/bm:/tmp"
63         sed -i -e "s@[;]*open_basedir =.*@open_basedir = \"$open_basedir\"@" $php_ini
64
65         # for php-5.3 under fedora12, otherwise issues tons of warning messages
66         # Set timezone in php.ini if not already there
67         if grep '^;date.timezone' $php_ini >& /dev/null; then
68             dialog 'Setting PHP timezone to GMT'
69             sed -i -e 's,^;date.timezone.*,date.timezone = GMT,' $php_ini
70         fi
71
72         if grep '^short_open_tag = Off' $php_ini >& /dev/null; then
73             sed -i -e 's,^short_open_tag = Off,short_open_tag = On,' $php_ini
74         fi
75
76         ## patch php.ini
77         # memory limit
78         sed -i -e 's,^memory_limit = 32M *;,memory_limit = 80M ; patch myplc -- ,' $php_ini
79         # log_errors : is On by default
80         # error_log
81         if ! grep '^error_log *=' $php_ini > /dev/null ; then
82           echo 'error_log = /var/log/php.log' >> $php_ini
83           touch /var/log/php.log
84           chmod 666 /var/log/php.log
85         fi
86
87         # configure php-fpm as well if present (starting with f27)
88         if [ -d $php_fpm_dir ] ; then
89             cat > $php_fpm_conf << EOF
90 [www]
91 php_value[include_path] = $include_path
92 php_value[open_basedir] = $open_basedir
93 php_value[date.timezone] = GMT
94 php_value[short_open_tag] = On
95 php_value[memory_limit] = 80M
96 EOF
97             # this is needed because otherwise, the first time
98             # we do this configuration, the service is already up
99             # and the config is usable only the second time
100             systemctl restart php-fpm
101         fi
102
103         # Disable default Listen directive
104         sed -i -e '/^Listen/d' $httpd_conf
105
106         plc_api_path_noslash=$(echo $PLC_API_PATH | sed -e s,/,,g)
107         # Set the port numbers
108         for server in WWW API BOOT ; do
109             enabled=PLC_${server}_ENABLED
110             if [ "${!enabled}" != "1" ] ; then
111                 continue
112             fi
113             hostname=PLC_${server}_HOST
114             http_port=PLC_${server}_PORT
115             https_port=PLC_${server}_SSL_PORT
116
117             # API should always be accessed via SSL
118             if [ "$server" = "API" ] ; then
119                 https_port=${!http_port}
120                 http_port=
121             fi
122
123             # Check if we are already listening on these ports
124             skip_http=0
125             skip_https=0
126             for previous_server in WWW API BOOT ; do
127                 if [ "$server" = "$previous_server" ] ; then
128                     break
129                 fi
130                 previous_enabled=PLC_${previous_server}_ENABLED
131                 if [ "${!previous_enabled}" != "1" ] ; then
132                     continue
133                 fi
134                 previous_http_port=PLC_${previous_server}_PORT
135                 previous_https_port=PLC_${previous_server}_SSL_PORT
136
137                 if [ -z "${http_port}" ]; then
138                     skip_http=1;
139                 elif [ -z "${!http_port}" ]; then
140                     skip_http=1;
141                 elif [ "${!http_port}" = "${!previous_http_port}" ] ; then
142                     skip_http=1
143                 fi
144                 if [ -z "${https_port}" ]; then
145                     skip_https=1
146                 elif [ -z "${!https_port}" ]; then
147                     skip_https=1
148                 elif [ "${!https_port}" = "${!previous_https_port}" ] ; then
149                     skip_https=1
150                 fi
151             done
152
153             # HTTP configuration
154             if [ $skip_http -eq 0 ] ; then
155                 cat <<EOF
156 Listen ${!http_port}
157 <VirtualHost *:${!http_port}>
158     # Make sure that the admin web pages are always accessed via SSL
159     Redirect /db https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/db
160     Redirect /planetlab https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/planetlab
161 # as a matter of fact most xmlrpc clients won't follow the redirection
162 # so this is mostly rethorical, but just in case...
163    Redirect /$plc_api_path_noslash https://$PLC_WWW_HOST:$PLC_WWW_SSL_PORT/$plc_api_path_noslash
164 </VirtualHost>
165
166 EOF
167             fi
168
169             # HTTPS configuration
170             if [ $skip_https -eq 0 ] ; then
171                 # XXX Cannot support NameVirtualHost over SSL. If
172                 # the API, boot, and web servers are all running
173                 # on the same machine, the web server certificate
174                 # takes precedence.
175                 sed -i \
176                     -e "s/^Listen .*/Listen ${!https_port}/" \
177                     -e "s/<VirtualHost _default_:.*>/<VirtualHost _default_:${!https_port}>/" \
178                     $ssl_conf
179                 # this is used to locate the right certificates
180                 server_lower=$(echo $server | tr 'A-Z' 'a-z')
181
182                 # which one is used is currently configured in myplc.spec,
183                 # with mod_python preferred
184                 if rpm -q mod_python >& /dev/null ; then
185                     configure_for_mod_python=true
186                 elif rpm -q mod_wsgi >& /dev/null \
187           || rpm -q python2-mod_wsgi >& /dev/null \
188           || rpm -q python3-mod_wsgi >& /dev/null ; then
189                     configure_for_mod_wsgi=true
190                 else
191                     echo "Requires mod_python or mod_wsgi.... exiting"
192                     exit 1
193                 fi
194
195                 # It would be tempting to use <IfModule> here
196                 # but early tests showed this could be tricky/fragile
197                 # So let's hard-wire it for one module
198                 # A lot of trial-and -error was involved in getting this that way...
199
200                 if [ -n "$configure_for_mod_python" ] ; then
201 #################### for mod_python
202                     cat <<EOF
203 # mod_python location
204 <Location /PLCAPI/>
205     SetHandler mod_python
206     PythonPath "sys.path + ['/usr/share/plc_api']"
207     PythonHandler apache.ModPython
208 </Location>
209 EOF
210
211                 elif [ -n "$configure_for_mod_wsgi" ] ; then
212 #################### for mod_wsgi
213                     cat <<EOF
214 # create wsgi socket where we have the permission
215 WSGISocketPrefix run/wsgi
216
217 <VirtualHost *:${!https_port}>
218
219    # SSL
220    SSLEngine On
221    SSLCertificateFile /etc/planetlab/${server_lower}_ssl.crt
222    SSLCertificateKeyFile /etc/planetlab/${server_lower}_ssl.key
223    SSLCertificateChainFile /etc/planetlab/${server_lower}_ca_ssl.crt
224
225    WSGIScriptAlias /$plc_api_path_noslash /usr/share/plc_api/apache/plc.wsgi
226 # xxx would be cool to be able to tweak this through config
227    WSGIDaemonProcess plcapi-wsgi-ssl user=apache group=apache processes=1 threads=25
228    WSGIProcessGroup plcapi-wsgi-ssl
229
230    <Directory "/usr/share/plc_api/apache">
231       Options +ExecCGI
232       $(apache_allow)
233    </Directory>
234
235 </VirtualHost>
236 EOF
237                 fi
238             fi
239         done >$plc_conf
240
241         # Set custom Apache directives
242         (
243             # could be restricted to boot boxes but harmless..
244             cat <<EOF
245 AddType application/octet-stream .iso
246 AddType application/octet-stream .usb
247 EOF
248             # make sure /PLCAPI can't get accessed if API not enabled here
249             if [ "$PLC_API_ENABLED" != "1" ] ; then
250                 cat <<EOF
251 # mod_wsgi location
252 <Location $PLC_API_PATH>
253     $(apache_forbid)
254 </Location>
255 EOF
256             fi
257
258             # redirect www requests if not on the right server
259             if [ "$PLC_WWW_ENABLED" != "1" ] ; then
260                 cat <<EOF
261 Redirect /index.html http://$PLC_WWW_HOST:$PLC_WWW_PORT/
262 EOF
263             fi
264         ) >>$plc_conf
265
266         # Make alpina-logs directory writable for bootmanager log upload
267         chown apache:apache $DocumentRoot/alpina-logs/nodes
268
269         # Make the Drupal files upload directory owned by Apache
270         mkdir -p $DocumentRoot/files
271         chown apache:apache $DocumentRoot/files
272
273         # Symlink any (real) files or directories in
274         # /data/var/www/html/* to /var/www/html/. We could descend
275         # into subdirectories, but the code to do so properly would be
276         # madness.
277         for file in /data/$DocumentRoot/* ; do
278             if [ -e "$file" -a ! -h "$file" ] ; then
279                 base=$(basename "$file")
280                 if [ ! -e "$DocumentRoot/$base" ] ; then
281                     ln -nsf "$file" "$DocumentRoot/$base"
282                 fi
283             fi
284         done
285
286         # Cleanup broken symlinks
287         for file in $DocumentRoot/* ; do
288             if [ -h "$file" -a ! -e "$file" ] ; then
289                 rm -f "$file"
290             fi
291         done
292
293         # Old style PHP constants
294         mkdir -p /etc/planetlab/php
295         cat >/etc/planetlab/php/site_constants.php <<"EOF"
296 <?php
297 include('plc_config.php');
298
299 define('PL_API_SERVER', PLC_API_HOST);
300 define('PL_API_PATH', PLC_API_PATH);
301 define('PL_API_PORT', PLC_API_PORT);
302 define('PL_API_CAPABILITY_AUTH_METHOD', 'capability');
303 define('PL_API_CAPABILITY_PASS', PLC_API_MAINTENANCE_PASSWORD);
304 define('PL_API_CAPABILITY_USERNAME', PLC_API_MAINTENANCE_USER);
305 define('WWW_BASE', PLC_WWW_HOST);
306 define('BOOT_BASE', PLC_BOOT_HOST);
307 define('DEBUG', PLC_WWW_DEBUG);
308 define('API_CALL_DEBUG', PLC_API_DEBUG);
309 define('SENDMAIL', PLC_MAIL_ENABLED);
310 define('PLANETLAB_SUPPORT_EMAIL', PLC_NAME . ' Support <' . PLC_MAIL_SUPPORT_ADDRESS . '>');
311 define('PLANETLAB_SUPPORT_EMAIL_ONLY', PLC_MAIL_SUPPORT_ADDRESS);
312 ?>
313 EOF
314
315         ## make room for logs
316         touch /var/log/plcapi.log
317         chmod 666 /var/log/plcapi.log
318
319         plc_daemon httpd
320         check
321
322         result "$MESSAGE"
323         ;;
324
325     stop)
326         MESSAGE=$"Stopping web server"
327         dialog "$MESSAGE"
328
329         killproc plc_httpd
330         check
331
332         result "$MESSAGE"
333         ;;
334 esac
335
336 exit $ERRORS