mirror of
https://github.com/saltstack-formulas/apache-formula.git
synced 2025-04-17 10:10:26 +00:00
feat(vhosts/standard): add support for ScriptAlias in standard vhost
The standard vhost currently handles a regular Alias configuration statement, but not the related ScriptAlias. Add this.
This commit is contained in:
parent
78bd21ad62
commit
b88b437308
2 changed files with 7 additions and 0 deletions
|
@ -78,6 +78,10 @@
|
|||
Alias {{ loc }} {{ path }}
|
||||
{%- endfor %}
|
||||
|
||||
{%- for loc, path in site.get('ScriptAlias', {}).items() %}
|
||||
ScriptAlias {{ loc }} {{ path }}
|
||||
{%- endfor %}
|
||||
|
||||
{%- for path, dir in site.get('Directory', {}).items() -%}
|
||||
{%- set dvals = {
|
||||
'Options': dir.get('Options', vals.Directory.Options),
|
||||
|
|
|
@ -284,6 +284,9 @@ apache:
|
|||
Alias:
|
||||
/docs: /usr/share/docs
|
||||
|
||||
ScriptAlias:
|
||||
/cgi-bin/: /var/www/cgi-bin/
|
||||
|
||||
Formula_Append: |
|
||||
Additional config as a
|
||||
multi-line string here
|
||||
|
|
Loading…
Add table
Reference in a new issue