aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_wsgi.conf
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2024-10-05 16:09:13 -0700
committerDan Fandrich <danf@mageia.org>2024-10-05 16:39:54 -0700
commita7797c331e1fa86bdef5c49d6870d822dc591217 (patch)
treeab13b66e6f59511f98c5973ecbff36af876b57cc /modules/apache/templates/vhost_wsgi.conf
parent9d1a749d073a5997cd435ac51c5c65eb050b2af5 (diff)
downloadpuppet-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.conf2
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 %>