add wildcard support to create_web_vhost_config task
This commit is contained in:
parent
faedcb77f0
commit
afd9bbf1fe
1 changed files with 3 additions and 1 deletions
|
@ -40,13 +40,15 @@ def _build_document_root_path(sitename, username):
|
|||
|
||||
|
||||
@shared_task
|
||||
def create_web_vhost_config(username, sitename):
|
||||
def create_web_vhost_config(username, sitename, wildcard):
|
||||
"""
|
||||
This task creates a virtual host configuration on an nginx web
|
||||
server.
|
||||
|
||||
:param str username: user who owns the site
|
||||
:param str sitename: site name
|
||||
:param boolean wildcard: designates whether this is website has a wildcard
|
||||
subdomain
|
||||
:return: :py:const:`True` if the creation finished successfully
|
||||
:rtype: boolean
|
||||
|
||||
|
|
Loading…
Reference in a new issue