Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. emejibka_8689
    E
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    emejibka_8689

    @emejibka_8689

    0
    Reputation
    3
    Posts
    1
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    emejibka_8689 Follow

    Best posts made by emejibka_8689

    This user hasn't posted anything yet.

    Latest posts made by emejibka_8689

    • RE: Cant login in proget behind nginx proxy

      Nothing strange. I check sources with dotpeek, X-Forwarded* headers does not using on login request. I add proxy_set_header Host $http_host; to nginx config for fix.

      posted in Support
      E
      emejibka_8689
    • RE: Cant login in proget behind nginx proxy

      Nothing changed. I try with null value in base url and "https://nuget.medinfocenter.ru/" value

      posted in Support
      E
      emejibka_8689
    • Cant login in proget behind nginx proxy

      Cookie after authtification does not save because domain does not same, my proget instance url nuget.medinfocenter.ru but in cookie I see domain localhost
      33443db5-44b3-473d-b09f-7035ef887d01-image.png

      My nginx config

          location / {
                  proxy_pass http://localhost:8000;
      
                  proxy_set_header X-Forwarded-Host $http_host;
                  proxy_set_header X-Forwarded-Proto $scheme;
                  proxy_set_header X-Real-IP $remote_addr;
                  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                  proxy_http_version 1.1;
          }
      posted in Support
      E
      emejibka_8689