Skip to content

Commit 203fc94

Browse files
committed
Update WSGIApplicationGroup to %{GLOBAL} and remove explicit process-group and application-group in WSGIScriptAlias
1 parent b035a46 commit 203fc94

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

dev/rucio.conf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ WSGIDaemonProcess rucio processes=4 threads=4
1212
# Keep in mind that any output sent to sys.stdout gets redirected to sys.stderr instead.
1313
# This setting is mainly for debugging (not for production systems).
1414
WSGIRestrictStdout Off
15-
WSGIApplicationGroup rucio
15+
WSGIProcessGroup rucio
16+
WSGIApplicationGroup %{GLOBAL}
1617

1718
<VirtualHost *:443>
1819

@@ -52,12 +53,12 @@ WSGIApplicationGroup rucio
5253
# Rucio WebUI
5354
Alias /media /opt/rucio/lib/rucio/web/ui/media
5455
Alias /static /opt/rucio/lib/rucio/web/ui/static
55-
WSGIScriptAlias /ui /opt/rucio/lib/rucio/web/ui/main.py process-group=rucio application-group=rucio
56+
WSGIScriptAlias /ui /opt/rucio/lib/rucio/web/ui/main.py
5657

5758
# Prometheus Metrics
58-
WSGIScriptAlias /metrics /opt/rucio/lib/rucio/web/rest/metrics.py process-group=rucio application-group=rucio
59+
WSGIScriptAlias /metrics /opt/rucio/lib/rucio/web/rest/metrics.py
5960

6061
# Rucio Flask REST API
61-
WSGIScriptAlias / /opt/rucio/lib/rucio/web/rest/main.py process-group=rucio application-group=rucio
62+
WSGIScriptAlias / /opt/rucio/lib/rucio/web/rest/main.py
6263

6364
</VirtualHost>

0 commit comments

Comments
 (0)