diff options
author | Dan Fandrich <danf@mageia.org> | 2024-10-05 16:09:13 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-10-05 16:39:54 -0700 |
commit | a7797c331e1fa86bdef5c49d6870d822dc591217 (patch) | |
tree | ab13b66e6f59511f98c5973ecbff36af876b57cc /modules/apache/templates/vhost_wsgi.conf | |
parent | 9d1a749d073a5997cd435ac51c5c65eb050b2af5 (diff) | |
download | puppet-a7797c331e1fa86bdef5c49d6870d822dc591217.tar puppet-a7797c331e1fa86bdef5c49d6870d822dc591217.tar.gz puppet-a7797c331e1fa86bdef5c49d6870d822dc591217.tar.bz2 puppet-a7797c331e1fa86bdef5c49d6870d822dc591217.tar.xz puppet-a7797c331e1fa86bdef5c49d6870d822dc591217.zip |
Use @ when accessing variables in templates
Access without the @ symbol is the older method and is discouraged.
This take leaves alone accesses of variables that are defined within the
template, which don't seem to allow an @.
This batch of changes is for templates related to web sites.
Diffstat (limited to 'modules/apache/templates/vhost_wsgi.conf')
-rw-r--r-- | modules/apache/templates/vhost_wsgi.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/apache/templates/vhost_wsgi.conf b/modules/apache/templates/vhost_wsgi.conf index 34926411..2f1ba585 100644 --- a/modules/apache/templates/vhost_wsgi.conf +++ b/modules/apache/templates/vhost_wsgi.conf @@ -1,3 +1,3 @@ -WSGIScriptAlias / <%= wsgi_path %> +WSGIScriptAlias / <%= @wsgi_path %> |