Navigation

    Inedo Community Forums

    Forums

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

    clmcgrath

    @clmcgrath

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

    clmcgrath Follow

    Best posts made by clmcgrath

    This user hasn't posted anything yet.

    Latest posts made by clmcgrath

    • RE: ERR_SSL_PROTOCOL_ERROR when downloading files

      I found the answer , the forwarding headers need to be added to the reverse proxy config when using linux

      https://docs.inedo.com/docs/https-support-on-linux

      server {
      	listen 80;
      	listen [::]:80;
      
      	server_name "";
      
      	return 301 https://`$http_host`$request_uri;
      }
      server
      {
         listen 443 ssl;
         listen [::]:443 ssl;
      
         ssl_certificate /etc/ssl/cert/your_cert_com.crt;
         ssl_certificate_key /etc/ssl/cert/your_cert_com.key;
      
         server_name proget.domain.com;
      
         access_log /var/log/nginx/nginx.vhost.access.log;
         error_log /var/log/nginx/nginx.vhost.error.log;
      
         # Disable any limits to avoid HTTP 413 for large image uploads
         # ProGet requirement for VS to publish to ProGet 
         client_max_body_size 0;
         # required to avoid HTTP 411: see Issue #1486 (https://github.com/dotcloud/docker/issues/1486)
         chunked_transfer_encoding on;
      
         location /
         {
             proxy_pass http://localhost:81;		# local server
             proxy_http_version 1.1;
             proxy_cache_bypass  $http_upgrade;
      
             proxy_set_header Upgrade $http_upgrade;
             proxy_set_header Connection "upgrade";
      	   proxy_set_header Host $http_host;
             proxy_set_header X-Real-IP $remote_addr;
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             proxy_set_header X-Forwarded-Proto $scheme;
             proxy_set_header X-Forwarded-Host $http_host;
             proxy_set_header X-Forwarded-Port $server_port;
         }
      }
      
      posted in Support
      C
      clmcgrath
    • ERR_SSL_PROTOCOL_ERROR when downloading files

      I am currently running proget behind a reverse proxy with https enabled
      everything works fine except when i try to download packages using the provided links i get the following ERR_SSL_PROTOCOL_ERROR , the downloads work as expected on http
      ERR_SSL_PROTOCOL_ERROR

      I couldnt find any options in settings regarding ssl , i am running the linux docker container for my proget server on free edition

      I have not tested this with packages , but is currently happening for me with assets

      dbcfa109-6c4b-4a1e-bc2a-5d4c30941c50-image.png

      posted in Support
      C
      clmcgrath