Container not loading and error invalid number of arguments in "upstream" directive

  • 7024508
  • 26-Mar-2020
  • 26-Mar-2020

Environment

GroupWise 18.2

Situation

The error reported during the docker run command is

invalid number of arguments in "upstream" directive in /etc/nginx/gw/web.conf:1

Looking at the web.conf the line 1 shows as :

upstream POA.GRPWISE EFS.EFS MAIL.POA {
        server 192.168.96.5:7191;
}

Notice the space in GRPWISE EFS


Resolution

This has been reported to engineering. 

The web.conf file will need to be edited and the space escaped out

When you change the web.conf and add quotes around this it loads without problems so in the web.conf it looks like:

upstream "POA.GRPWISE EFS.EFS MAIL.POA" {
        server 192.168.96.5:7191;
}

Cause

There is a space in the name of the post office.