Jump to content

Using NGINX with Unigui


SMARAM

Recommended Posts

Hi,

I'm using nginx to redirect my unigui applications on IIS, but I need help to setting up. When nginx redirects an application to location, the files sources don't work. I've alredy tried to change ExtRoot and UniRoot, but without success.

nginx conf

    upstream amteste {
        server localhost:91;
    }
    
    server {
        listen 80;

        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Host $host:$server_port;

        location = /amteste {
            return 301 /amteste/;
        }
        location /amteste/ {
            proxy_pass http://amteste/;
        }     
    }

 

image.png.29dac5528277daa5a6c66e654032c2a2.png

image.thumb.png.cd60b4a7a7e8f68971ac7c37ceb11da8.png

image.png.c4b996d9f99b3a22c064ddc6575d8130.png

image.png.5a9743888391e68b2372882d351c9748.png

 

Is it possible? Any idea?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...