Skip to content

Commit 8ad9d16

Browse files
authored
Merge pull request #28 from mbtamuli/fix_nginx_conf
Fix hostname in nginx configuration template
2 parents 0f0907c + 7ecc6e6 commit 8ad9d16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/config/nginx/default.conf.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ server {
3737
location /redis-fetch {
3838
internal ;
3939
set $redis_key $args;
40-
redis_pass ee_redis:6379;
40+
redis_pass redis:6379;
4141
}
4242
location /redis-store {
4343
internal ;
4444
set_unescape_uri $key $arg_key ;
4545
redis2_query set $key $echo_request_body;
4646
redis2_query expire $key 14400;
47-
redis2_pass ee_redis:6379;
47+
redis2_pass redis:6379;
4848
}
4949

5050
location ~ \.php$ {

0 commit comments

Comments
 (0)