File tree 4 files changed +12
-5
lines changed
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 2
2
#
3
3
# Change %PORT% to the port that you wish to use on your system
4
4
# Change %SERVICENAME% to the service name you are using
5
+ # Change %USER% to the system user that will run the daemon process
5
6
# Change the debug level as you see fit
6
7
#
7
8
# For example:
8
9
# Replace %PORT% by 6012
9
10
# Replace %SERVICENAME% by account-server-1
11
+ # Replace %USER% with apache (or remove it for default)
10
12
11
13
NameVirtualHost *:%PORT%
12
14
Listen %PORT%
13
15
14
16
<VirtualHost *:%PORT%>
15
- WSGIDaemonProcess %SERVICENAME% processes=5 threads=1
17
+ WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
16
18
WSGIProcessGroup %SERVICENAME%
17
19
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
18
20
WSGIApplicationGroup %{GLOBAL}
Original file line number Diff line number Diff line change 2
2
#
3
3
# Change %PORT% to the port that you wish to use on your system
4
4
# Change %SERVICENAME% to the service name you are using
5
+ # Change %USER% to the system user that will run the daemon process
5
6
# Change the debug level as you see fit
6
7
#
7
8
# For example:
8
9
# Replace %PORT% by 6011
9
10
# Replace %SERVICENAME% by container-server-1
11
+ # Replace %USER% with apache (or remove it for default)
10
12
11
13
NameVirtualHost *:%PORT%
12
14
Listen %PORT%
13
15
14
16
<VirtualHost *:%PORT%>
15
- WSGIDaemonProcess %SERVICENAME% processes=5 threads=1
17
+ WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
16
18
WSGIProcessGroup %SERVICENAME%
17
19
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
18
20
WSGIApplicationGroup %{GLOBAL}
Original file line number Diff line number Diff line change 2
2
#
3
3
# Change %PORT% to the port that you wish to use on your system
4
4
# Change %SERVICENAME% to the service name you are using
5
+ # Change %USER% to the system user that will run the daemon process
5
6
# Change the debug level as you see fit
6
7
#
7
8
# For example:
8
9
# Replace %PORT% by 6010
9
10
# Replace %SERVICENAME% by object-server-1
10
-
11
+ # Replace %USER% with apache (or remove it for default)
11
12
12
13
NameVirtualHost *:%PORT%
13
14
Listen %PORT%
14
15
15
16
<VirtualHost *:%PORT%>
16
- WSGIDaemonProcess %SERVICENAME% processes=5 threads=1
17
+ WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
17
18
WSGIProcessGroup %SERVICENAME%
18
19
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
19
20
WSGIApplicationGroup %{GLOBAL}
Original file line number Diff line number Diff line change 2
2
#
3
3
# Change %PORT% to the port that you wish to use on your system
4
4
# Change %SERVICENAME% to the service name you are using
5
+ # Change %USER% to the system user that will run the daemon process
5
6
# Change the debug level as you see fit
6
7
#
7
8
# For example:
8
9
# Replace %PORT% by 8080
9
10
# Replace %SERVICENAME% by proxy-server
11
+ # Replace %USER% with apache (or remove it for default)
10
12
11
13
NameVirtualHost *:%PORT%
12
14
Listen %PORT%
13
15
14
16
<VirtualHost *:%PORT%>
15
17
# The limit of an object size
16
18
LimitRequestBody 5368709122
17
- WSGIDaemonProcess %SERVICENAME% processes=5 threads=1
19
+ WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
18
20
WSGIProcessGroup %SERVICENAME%
19
21
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
20
22
WSGIApplicationGroup %{GLOBAL}
You can’t perform that action at this time.
0 commit comments