You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
394 B
26 lines
394 B
4 years ago
|
[function for setting up apache]
|
||
|
func = apache_setup
|
||
|
|
||
|
[install apache]
|
||
|
install: apache2
|
||
|
func: apache_setup
|
||
|
|
||
|
[install wsgi]
|
||
|
install: mod_wsgi
|
||
|
func: apache_setup
|
||
|
|
||
|
[enable wsgi]
|
||
|
apache.enable_module: mod_wsgi
|
||
|
func: apache_setup
|
||
|
|
||
|
[disable the default site]
|
||
|
apache.disable_site = default
|
||
|
func: apache_setup
|
||
|
|
||
|
[restart apache]
|
||
|
apache: restart
|
||
|
func: apache_setup
|
||
|
|
||
|
[call apache setup]
|
||
|
run: apache_setup
|