mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Fix unix socket paths in nginx upstream module
Unix socket paths only require a single forward slash according to the HttpUpstreamModule documentation: http://wiki.nginx.org/HttpUpstreamModule
This commit is contained in:
parent
dda831fd41
commit
ec223e5312
1 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
|||
upstream discourse {
|
||||
server unix:///var/www/discourse/tmp/sockets/thin.0.sock;
|
||||
server unix:///var/www/discourse/tmp/sockets/thin.1.sock;
|
||||
server unix:///var/www/discourse/tmp/sockets/thin.2.sock;
|
||||
server unix:///var/www/discourse/tmp/sockets/thin.3.sock;
|
||||
server unix:/var/www/discourse/tmp/sockets/thin.0.sock;
|
||||
server unix:/var/www/discourse/tmp/sockets/thin.1.sock;
|
||||
server unix:/var/www/discourse/tmp/sockets/thin.2.sock;
|
||||
server unix:/var/www/discourse/tmp/sockets/thin.3.sock;
|
||||
}
|
||||
|
||||
server {
|
||||
|
|
Loading…
Reference in a new issue