mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:02:52 +02:00
Merge pull request #1945 from domcleal/1934-augeas-arg-quotes
Merge Augeas lens fix for quotes in directive arguments
This commit is contained in:
@@ -59,7 +59,7 @@ let empty = Util.empty_dos
|
|||||||
let indent = Util.indent
|
let indent = Util.indent
|
||||||
|
|
||||||
(* borrowed from shellvars.aug *)
|
(* borrowed from shellvars.aug *)
|
||||||
let char_arg_dir = /([^\\ '"{\t\r\n]|[^ '"{\t\r\n]+[^\\ '"\t\r\n])|\\\\"|\\\\'/
|
let char_arg_dir = /([^\\ '"{\t\r\n]|[^ '"{\t\r\n]+[^\\ \t\r\n])|\\\\"|\\\\'/
|
||||||
let char_arg_sec = /[^ '"\t\r\n>]|\\\\"|\\\\'/
|
let char_arg_sec = /[^ '"\t\r\n>]|\\\\"|\\\\'/
|
||||||
let char_arg_wl = /([^\\ '"},\t\r\n]|[^ '"},\t\r\n]+[^\\ '"},\t\r\n])/
|
let char_arg_wl = /([^\\ '"},\t\r\n]|[^ '"},\t\r\n]+[^\\ '"},\t\r\n])/
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<VirtualHost *:80>
|
||||||
|
|
||||||
|
WSGIDaemonProcess _graphite processes=5 threads=5 display-name='%{GROUP}' inactivity-timeout=120 user=_graphite group=_graphite
|
||||||
|
WSGIProcessGroup _graphite
|
||||||
|
WSGIImportScript /usr/share/graphite-web/graphite.wsgi process-group=_graphite application-group=%{GLOBAL}
|
||||||
|
WSGIScriptAlias / /usr/share/graphite-web/graphite.wsgi
|
||||||
|
|
||||||
|
Alias /content/ /usr/share/graphite-web/static/
|
||||||
|
<Location "/content/">
|
||||||
|
SetHandler None
|
||||||
|
</Location>
|
||||||
|
|
||||||
|
ErrorLog ${APACHE_LOG_DIR}/graphite-web_error.log
|
||||||
|
|
||||||
|
# Possible values include: debug, info, notice, warn, error, crit,
|
||||||
|
# alert, emerg.
|
||||||
|
LogLevel warn
|
||||||
|
|
||||||
|
CustomLog ${APACHE_LOG_DIR}/graphite-web_access.log combined
|
||||||
|
|
||||||
|
</VirtualHost>
|
||||||
Reference in New Issue
Block a user