blob: cbe61adf344248cda41400e82d75971f810a7150 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
zhang-hared98a5d02013-06-21 18:18:02 +08003# lib/apache
4# Functions to control configuration and operation of apache web server
5
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - ``functions`` file
Dean Troyerd8864fe2014-02-17 11:00:42 -06009# - ``STACK_USER`` must be defined
10#
Stephan Renatuse578eff2013-11-19 13:31:04 +010011# lib/apache exports the following functions:
12#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010013# - install_apache_wsgi
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +000014# - apache_site_config_for
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010015# - enable_apache_site
16# - disable_apache_site
17# - start_apache_server
18# - stop_apache_server
19# - restart_apache_server
zhang-hared98a5d02013-06-21 18:18:02 +080020
21# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110022_XTRACE_LIB_APACHE=$(set +o | grep xtrace)
zhang-hared98a5d02013-06-21 18:18:02 +080023set +o xtrace
24
25# Allow overriding the default Apache user and group, default to
26# current user and his default group.
Stephan Renatuse578eff2013-11-19 13:31:04 +010027APACHE_USER=${APACHE_USER:-$STACK_USER}
zhang-hared98a5d02013-06-21 18:18:02 +080028APACHE_GROUP=${APACHE_GROUP:-$(id -gn $APACHE_USER)}
29
30
31# Set up apache name and configuration directory
Clark Boylancfb9f052016-11-29 10:43:05 -080032# Note that APACHE_CONF_DIR is really more accurately apache's vhost
33# configuration dir but we can't just change this because public interfaces.
zhang-hared98a5d02013-06-21 18:18:02 +080034if is_ubuntu; then
35 APACHE_NAME=apache2
Dean Troyer444a8d52014-06-06 16:36:52 -050036 APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/sites-available}
Clark Boylancfb9f052016-11-29 10:43:05 -080037 APACHE_SETTINGS_DIR=${APACHE_SETTINGS_DIR:-/etc/$APACHE_NAME/conf-enabled}
zhang-hared98a5d02013-06-21 18:18:02 +080038elif is_fedora; then
39 APACHE_NAME=httpd
Dean Troyer444a8d52014-06-06 16:36:52 -050040 APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/conf.d}
Clark Boylancfb9f052016-11-29 10:43:05 -080041 APACHE_SETTINGS_DIR=${APACHE_SETTINGS_DIR:-/etc/$APACHE_NAME/conf.d}
zhang-hared98a5d02013-06-21 18:18:02 +080042elif is_suse; then
43 APACHE_NAME=apache2
Dean Troyer444a8d52014-06-06 16:36:52 -050044 APACHE_CONF_DIR=${APACHE_CONF_DIR:-/etc/$APACHE_NAME/vhosts.d}
Clark Boylancfb9f052016-11-29 10:43:05 -080045 APACHE_SETTINGS_DIR=${APACHE_SETTINGS_DIR:-/etc/$APACHE_NAME/conf.d}
zhang-hared98a5d02013-06-21 18:18:02 +080046fi
Clark Boylan66ce5c22016-10-05 12:11:05 -070047APACHE_LOG_DIR="/var/log/${APACHE_NAME}"
zhang-hared98a5d02013-06-21 18:18:02 +080048
49# Functions
50# ---------
Gregory Haynes4b49e402016-08-31 18:19:51 -070051
52# Enable apache mod and restart apache if it isn't already enabled.
53function enable_apache_mod {
54 local mod=$1
55 # Apache installation, because we mark it NOPRIME
Clark Boylan35649ae2017-05-27 17:52:55 -070056 if is_ubuntu; then
57 # Skip mod_version as it is not a valid mod to enable
58 # on debuntu, instead it is built in.
59 if [[ "$mod" != "version" ]] && ! a2query -m $mod ; then
60 sudo a2enmod $mod
61 restart_apache_server
62 fi
63 elif is_suse; then
64 if ! a2enmod -q $mod ; then
Gregory Haynes4b49e402016-08-31 18:19:51 -070065 sudo a2enmod $mod
66 restart_apache_server
67 fi
68 elif is_fedora; then
69 # pass
70 true
71 else
72 exit_distro_not_supported "apache enable mod"
73 fi
74}
75
Sean Dague604e5982017-04-13 13:28:12 -040076# NOTE(sdague): Install uwsgi including apache module, we need to get
77# to 2.0.6+ to get a working mod_proxy_uwsgi. We can probably build a
78# check for that and do it differently for different platforms.
79function install_apache_uwsgi {
80 local apxs="apxs2"
81 if is_fedora; then
82 apxs="apxs"
83 fi
84
Ian Wienand2d903562018-05-03 10:51:30 +100085 if is_ubuntu; then
Dr. Jens Harbott34800932020-02-13 09:38:35 +000086 local pkg_list="uwsgi uwsgi-plugin-python3 libapache2-mod-proxy-uwsgi"
Dr. Jens Harbott34800932020-02-13 09:38:35 +000087 install_package ${pkg_list}
Kevin Zhao7880ba62021-03-31 04:58:28 +000088 elif is_fedora && ! is_openeuler; then
Ian Wienand2d903562018-05-03 10:51:30 +100089 # Note httpd comes with mod_proxy_uwsgi and it is loaded by
90 # default; the mod_proxy_uwsgi package actually conflicts now.
91 # See:
92 # https://bugzilla.redhat.com/show_bug.cgi?id=1574335
93 #
94 # Thus there is nothing else to do after this install
95 install_package uwsgi \
96 uwsgi-plugin-python3
Andreas Jaeger10c3ffd2020-06-15 10:03:42 +020097 elif [[ $os_VENDOR =~ openSUSE ]]; then
98 install_package uwsgi \
99 uwsgi-python3 \
100 apache2-mod_uwsgi
Ian Wienand2d903562018-05-03 10:51:30 +1000101 else
Federico Ressic2c2b6b2020-06-15 12:48:38 +0200102 # Compile uwsgi from source.
Ian Wienand2d903562018-05-03 10:51:30 +1000103 local dir
104 dir=$(mktemp -d)
105 pushd $dir
106 pip_install uwsgi
107 pip download uwsgi -c $REQUIREMENTS_DIR/upper-constraints.txt
108 local uwsgi
109 uwsgi=$(ls uwsgi*)
110 tar xvf $uwsgi
111 cd uwsgi*/apache2
112 sudo $apxs -i -c mod_proxy_uwsgi.c
113 popd
114 # delete the temp directory
115 sudo rm -rf $dir
Ian Wienand2d903562018-05-03 10:51:30 +1000116 fi
Sean Dague604e5982017-04-13 13:28:12 -0400117
Clark Boylan35649ae2017-05-27 17:52:55 -0700118 if is_ubuntu || is_suse ; then
Sean Dague604e5982017-04-13 13:28:12 -0400119 # we've got to enable proxy and proxy_uwsgi for this to work
120 sudo a2enmod proxy
121 sudo a2enmod proxy_uwsgi
122 elif is_fedora; then
123 # redhat is missing a nice way to turn on/off modules
124 echo "LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so" \
125 | sudo tee /etc/httpd/conf.modules.d/02-proxy-uwsgi.conf
126 fi
127 restart_apache_server
128}
129
zhang-hared98a5d02013-06-21 18:18:02 +0800130# install_apache_wsgi() - Install Apache server and wsgi module
Ian Wienandaee18c72014-02-21 15:35:08 +1100131function install_apache_wsgi {
zhang-hared98a5d02013-06-21 18:18:02 +0800132 # Apache installation, because we mark it NOPRIME
133 if is_ubuntu; then
134 # Install apache2, which is NOPRIME'd
Davanum Srinivasafa8a002016-12-19 09:51:01 -0500135 install_package apache2
Jens Harbottd7a82f42020-06-23 10:21:09 +0200136 if is_package_installed libapache2-mod-wsgi; then
137 uninstall_package libapache2-mod-wsgi
Davanum Srinivasafa8a002016-12-19 09:51:01 -0500138 fi
Jens Harbottd7a82f42020-06-23 10:21:09 +0200139 install_package libapache2-mod-wsgi-py3
zhang-hared98a5d02013-06-21 18:18:02 +0800140 elif is_fedora; then
141 sudo rm -f /etc/httpd/conf.d/000-*
Hirotaka Wakabayashi1e265082020-07-02 06:19:21 +0000142 install_package httpd python3-mod_wsgi
Ian Wienand41e6e122017-08-08 15:06:26 +1000143 # For consistency with Ubuntu, switch to the worker mpm, as
Attila Fazekas9fd38e72017-12-11 12:20:25 +0100144 # the default is event
Ian Wienand41e6e122017-08-08 15:06:26 +1000145 sudo sed -i '/mod_mpm_prefork.so/s/^/#/g' /etc/httpd/conf.modules.d/00-mpm.conf
Attila Fazekas9fd38e72017-12-11 12:20:25 +0100146 sudo sed -i '/mod_mpm_event.so/s/^/#/g' /etc/httpd/conf.modules.d/00-mpm.conf
Ian Wienand41e6e122017-08-08 15:06:26 +1000147 sudo sed -i '/mod_mpm_worker.so/s/^#//g' /etc/httpd/conf.modules.d/00-mpm.conf
zhang-hared98a5d02013-06-21 18:18:02 +0800148 elif is_suse; then
149 install_package apache2 apache2-mod_wsgi
150 else
Gregory Haynes4b49e402016-08-31 18:19:51 -0700151 exit_distro_not_supported "apache wsgi installation"
zhang-hared98a5d02013-06-21 18:18:02 +0800152 fi
Gregory Haynes4b49e402016-08-31 18:19:51 -0700153 # WSGI isn't enabled by default, enable it
154 enable_apache_mod wsgi
Morgan Fainbergd074dc72014-06-24 21:33:39 -0700155}
156
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000157# apache_site_config_for() - The filename of the site's configuration file.
158# This function uses the global variables APACHE_NAME and APACHE_CONF_DIR.
159#
Sean Dague8f8b2742017-04-13 09:34:12 -0400160# On Ubuntu 14.04+, the site configuration file must have a .conf suffix for a2ensite and a2dissite to
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000161# recognise it. a2ensite and a2dissite ignore the .conf suffix used as parameter. The default sites'
162# files are 000-default.conf and default-ssl.conf.
163#
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200164# On Fedora and openSUSE, any file in /etc/httpd/conf.d/ whose name ends with .conf is enabled.
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000165#
166# On RHEL and CentOS, things should hopefully work as in Fedora.
167#
168# The table below summarizes what should happen on each distribution:
169# +----------------------+--------------------+--------------------------+--------------------------+
170# | Distribution | File name | Site enabling command | Site disabling command |
171# +----------------------+--------------------+--------------------------+--------------------------+
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000172# | Ubuntu 14.04 | site.conf | a2ensite site | a2dissite site |
173# | Fedora, RHEL, CentOS | site.conf.disabled | mv site.conf{.disabled,} | mv site.conf{,.disabled} |
174# +----------------------+--------------------+--------------------------+--------------------------+
175function apache_site_config_for {
176 local site=$@
177 if is_ubuntu; then
Sean Dague8f8b2742017-04-13 09:34:12 -0400178 # Ubuntu 14.04 - Apache 2.4
179 echo $APACHE_CONF_DIR/${site}.conf
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200180 elif is_fedora || is_suse; then
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000181 # fedora conf.d is only imported if it ends with .conf so this is approx the same
Dean Troyer444a8d52014-06-06 16:36:52 -0500182 local enabled_site_file="$APACHE_CONF_DIR/${site}.conf"
Gabriel Assis Bezerraa688bc62014-05-27 20:58:22 +0000183 if [ -f $enabled_site_file ]; then
184 echo ${enabled_site_file}
185 else
186 echo ${enabled_site_file}.disabled
187 fi
188 fi
189}
190
Jamie Lennox54707012013-09-17 12:07:48 +1000191# enable_apache_site() - Enable a particular apache site
Ian Wienandaee18c72014-02-21 15:35:08 +1100192function enable_apache_site {
Jamie Lennox54707012013-09-17 12:07:48 +1000193 local site=$@
Clark Boylan35649ae2017-05-27 17:52:55 -0700194 # Many of our sites use mod version. Just enable it.
195 enable_apache_mod version
Jamie Lennox54707012013-09-17 12:07:48 +1000196 if is_ubuntu; then
197 sudo a2ensite ${site}
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200198 elif is_fedora || is_suse; then
Dean Troyer444a8d52014-06-06 16:36:52 -0500199 local enabled_site_file="$APACHE_CONF_DIR/${site}.conf"
200 # Do nothing if site already enabled or no site config exists
201 if [[ -f ${enabled_site_file}.disabled ]] && [[ ! -f ${enabled_site_file} ]]; then
202 sudo mv ${enabled_site_file}.disabled ${enabled_site_file}
203 fi
Jamie Lennox54707012013-09-17 12:07:48 +1000204 fi
205}
206
207# disable_apache_site() - Disable a particular apache site
Ian Wienandaee18c72014-02-21 15:35:08 +1100208function disable_apache_site {
Jamie Lennox54707012013-09-17 12:07:48 +1000209 local site=$@
210 if is_ubuntu; then
Chris Dent2fcdaac2017-04-18 16:54:12 +0100211 sudo a2dissite ${site} || true
Ralf Haferkamp633a1292014-06-16 14:10:05 +0200212 elif is_fedora || is_suse; then
Dean Troyer444a8d52014-06-06 16:36:52 -0500213 local enabled_site_file="$APACHE_CONF_DIR/${site}.conf"
214 # Do nothing if no site config exists
215 if [[ -f ${enabled_site_file} ]]; then
216 sudo mv ${enabled_site_file} ${enabled_site_file}.disabled
217 fi
Jamie Lennox54707012013-09-17 12:07:48 +1000218 fi
219}
220
zhang-hared98a5d02013-06-21 18:18:02 +0800221# start_apache_server() - Start running apache server
Ian Wienandaee18c72014-02-21 15:35:08 +1100222function start_apache_server {
zhang-hared98a5d02013-06-21 18:18:02 +0800223 start_service $APACHE_NAME
224}
225
226# stop_apache_server() - Stop running apache server
Ian Wienandaee18c72014-02-21 15:35:08 +1100227function stop_apache_server {
zhang-hared98a5d02013-06-21 18:18:02 +0800228 if [ -n "$APACHE_NAME" ]; then
229 stop_service $APACHE_NAME
230 else
231 exit_distro_not_supported "apache configuration"
232 fi
233}
234
235# restart_apache_server
Ian Wienandaee18c72014-02-21 15:35:08 +1100236function restart_apache_server {
Morgan Fainberg2df00462014-07-15 11:06:36 -0700237 # Apache can be slow to stop, doing an explicit stop, sleep, start helps
238 # to mitigate issues where apache will claim a port it's listening on is
239 # still in use and fail to start.
Sean Dague2b85cf02017-04-13 09:02:14 -0400240 restart_service $APACHE_NAME
zhang-hared98a5d02013-06-21 18:18:02 +0800241}
242
Sean Dague2f8c88e2017-04-13 09:08:39 -0400243function write_uwsgi_config {
244 local file=$1
245 local wsgi=$2
246 local url=$3
247 local http=$4
248 local name=""
249 name=$(basename $wsgi)
rabiaa26baa2017-04-20 10:55:16 +0530250
251 # create a home for the sockets; note don't use /tmp -- apache has
252 # a private view of it on some platforms.
253 local socket_dir='/var/run/uwsgi'
Kirill Zaitsevd0db62a2017-05-26 19:02:52 +0300254
255 # /var/run will be empty on ubuntu after reboot, so we can use systemd-temptiles
256 # to automatically create $socket_dir.
257 sudo mkdir -p /etc/tmpfiles.d/
258 echo "d $socket_dir 0755 $STACK_USER root" | sudo tee /etc/tmpfiles.d/uwsgi.conf
259 sudo systemd-tmpfiles --create /etc/tmpfiles.d/uwsgi.conf
260
rabiaa26baa2017-04-20 10:55:16 +0530261 local socket="$socket_dir/${name}.socket"
Sean Dague2f8c88e2017-04-13 09:08:39 -0400262
263 # always cleanup given that we are using iniset here
264 rm -rf $file
265 iniset "$file" uwsgi wsgi-file "$wsgi"
Sean Dague2f8c88e2017-04-13 09:08:39 -0400266 iniset "$file" uwsgi processes $API_WORKERS
267 # This is running standalone
268 iniset "$file" uwsgi master true
269 # Set die-on-term & exit-on-reload so that uwsgi shuts down
270 iniset "$file" uwsgi die-on-term true
Dinesh Bhoref60f2b2017-09-05 14:40:32 +0530271 iniset "$file" uwsgi exit-on-reload false
Matthew Treinish477a9622017-08-04 11:09:26 -0400272 # Set worker-reload-mercy so that worker will not exit till the time
273 # configured after graceful shutdown
274 iniset "$file" uwsgi worker-reload-mercy $WORKER_TIMEOUT
Sean Dague2f8c88e2017-04-13 09:08:39 -0400275 iniset "$file" uwsgi enable-threads true
Kevin Zhao7880ba62021-03-31 04:58:28 +0000276 iniset "$file" uwsgi plugins http,python3
Sean Dague2f8c88e2017-04-13 09:08:39 -0400277 # uwsgi recommends this to prevent thundering herd on accept.
278 iniset "$file" uwsgi thunder-lock true
Matthew Treinish477a9622017-08-04 11:09:26 -0400279 # Set hook to trigger graceful shutdown on SIGTERM
280 iniset "$file" uwsgi hook-master-start "unix_signal:15 gracefully_kill_them_all"
Sean Dague2f8c88e2017-04-13 09:08:39 -0400281 # Override the default size for headers from the 4k default.
282 iniset "$file" uwsgi buffer-size 65535
283 # Make sure the client doesn't try to re-use the connection.
284 iniset "$file" uwsgi add-header "Connection: close"
285 # This ensures that file descriptors aren't shared between processes.
286 iniset "$file" uwsgi lazy-apps true
Sean Dague2f8c88e2017-04-13 09:08:39 -0400287
288 # If we said bind directly to http, then do that and don't start the apache proxy
289 if [[ -n "$http" ]]; then
290 iniset "$file" uwsgi http $http
291 else
292 local apache_conf=""
293 apache_conf=$(apache_site_config_for $name)
Chris Dentb90bb1a2017-04-18 16:30:14 +0000294 iniset "$file" uwsgi socket "$socket"
295 iniset "$file" uwsgi chmod-socket 666
Jens Harbott56e75e42021-09-28 20:02:34 +0200296 echo "ProxyPass \"${url}\" \"unix:${socket}|uwsgi://uwsgi-uds-${name}\" retry=0 " | sudo tee -a $apache_conf
Sean Dague2f8c88e2017-04-13 09:08:39 -0400297 enable_apache_site $name
Ian Wienandf6a2d2c2017-04-26 10:50:29 +1000298 restart_apache_server
Sean Dague2f8c88e2017-04-13 09:08:39 -0400299 fi
300}
301
Matthew Treinish1fa65362017-06-23 22:32:37 +0000302# For services using chunked encoding, the only services known to use this
303# currently are Glance and Swift, we need to use an http proxy instead of
304# mod_proxy_uwsgi because the chunked encoding gets dropped. See:
305# https://github.com/unbit/uwsgi/issues/1540 You can workaround this on python2
306# but that involves having apache buffer the request before sending it to
Jeremy Liu2f7df512017-07-12 10:09:48 +0800307# uwsgi.
Matthew Treinish1fa65362017-06-23 22:32:37 +0000308function write_local_uwsgi_http_config {
309 local file=$1
310 local wsgi=$2
311 local url=$3
312 name=$(basename $wsgi)
313
314 # create a home for the sockets; note don't use /tmp -- apache has
315 # a private view of it on some platforms.
316
317 # always cleanup given that we are using iniset here
318 rm -rf $file
319 iniset "$file" uwsgi wsgi-file "$wsgi"
320 port=$(get_random_port)
Matthew Treinish1560efe2017-06-30 12:15:26 -0400321 iniset "$file" uwsgi http-socket "127.0.0.1:$port"
Matthew Treinish1fa65362017-06-23 22:32:37 +0000322 iniset "$file" uwsgi processes $API_WORKERS
323 # This is running standalone
324 iniset "$file" uwsgi master true
325 # Set die-on-term & exit-on-reload so that uwsgi shuts down
326 iniset "$file" uwsgi die-on-term true
Dinesh Bhoref60f2b2017-09-05 14:40:32 +0530327 iniset "$file" uwsgi exit-on-reload false
Matthew Treinish1fa65362017-06-23 22:32:37 +0000328 iniset "$file" uwsgi enable-threads true
Kevin Zhao7880ba62021-03-31 04:58:28 +0000329 iniset "$file" uwsgi plugins http,python3
Matthew Treinish1fa65362017-06-23 22:32:37 +0000330 # uwsgi recommends this to prevent thundering herd on accept.
331 iniset "$file" uwsgi thunder-lock true
Matthew Treinish477a9622017-08-04 11:09:26 -0400332 # Set hook to trigger graceful shutdown on SIGTERM
333 iniset "$file" uwsgi hook-master-start "unix_signal:15 gracefully_kill_them_all"
334 # Set worker-reload-mercy so that worker will not exit till the time
335 # configured after graceful shutdown
336 iniset "$file" uwsgi worker-reload-mercy $WORKER_TIMEOUT
Matthew Treinish1fa65362017-06-23 22:32:37 +0000337 # Override the default size for headers from the 4k default.
338 iniset "$file" uwsgi buffer-size 65535
339 # Make sure the client doesn't try to re-use the connection.
340 iniset "$file" uwsgi add-header "Connection: close"
341 # This ensures that file descriptors aren't shared between processes.
342 iniset "$file" uwsgi lazy-apps true
343 iniset "$file" uwsgi chmod-socket 666
344 iniset "$file" uwsgi http-raw-body true
345 iniset "$file" uwsgi http-chunked-input true
346 iniset "$file" uwsgi http-auto-chunked true
Matthew Treinish82d06102017-06-28 17:42:31 -0400347 iniset "$file" uwsgi http-keepalive false
Matthew Treinishb79531a2017-06-30 12:10:06 -0400348 # Increase socket timeout for slow chunked uploads
349 iniset "$file" uwsgi socket-timeout 30
Matthew Treinish1fa65362017-06-23 22:32:37 +0000350
351 enable_apache_mod proxy
352 enable_apache_mod proxy_http
353 local apache_conf=""
354 apache_conf=$(apache_site_config_for $name)
355 echo "KeepAlive Off" | sudo tee $apache_conf
Matthew Treinisha3488d52017-08-10 14:55:15 -0400356 echo "SetEnv proxy-sendchunked 1" | sudo tee -a $apache_conf
Matthew Treinish1fa65362017-06-23 22:32:37 +0000357 echo "ProxyPass \"${url}\" \"http://127.0.0.1:$port\" retry=0 " | sudo tee -a $apache_conf
358 enable_apache_site $name
359 restart_apache_server
360}
361
Dan Smith09eea0b2020-07-09 08:31:51 -0700362# Write a straight-through proxy for a service that runs locally and just needs
363# to be reachable via the main http proxy at $loc
364function write_local_proxy_http_config {
365 local name=$1
366 local url=$2
367 local loc=$3
368 local apache_conf
369 apache_conf=$(apache_site_config_for $name)
370
371 enable_apache_mod proxy
372 enable_apache_mod proxy_http
373
374 echo "KeepAlive Off" | sudo tee $apache_conf
375 echo "SetEnv proxy-sendchunked 1" | sudo tee -a $apache_conf
376 echo "ProxyPass \"${loc}\" \"$url\" retry=0 " | sudo tee -a $apache_conf
377 enable_apache_site $name
378 restart_apache_server
379}
380
Sean Dague2f8c88e2017-04-13 09:08:39 -0400381function remove_uwsgi_config {
382 local file=$1
383 local wsgi=$2
384 local name=""
385 name=$(basename $wsgi)
386
387 rm -rf $file
388 disable_apache_site $name
389}
390
zhang-hared98a5d02013-06-21 18:18:02 +0800391# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100392$_XTRACE_LIB_APACHE
zhang-hared98a5d02013-06-21 18:18:02 +0800393
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100394# Tell emacs to use shell-script-mode
395## Local variables:
396## mode: shell-script
397## End: