[Gambas-user] [Gambas Bug Tracker] Bug #1286: Gambas info is blocked by IP

Sebastián Kulesz sebikul at gmail.com
Wed May 2 18:12:29 CEST 2018


As a workaround, if you want, I've set up a reverse proxy in a domain I own
so that you can access the wiki. Because of cookie domains, you will not be
able to access the bugtracker, but other parts of the website should work
just fine.
You can access it at https://gambas.sebikul.me.
I hope this helps you in the meantime!

I'm only logging as per the nginx default, and all data is passed directly
to the real gambas wiki server, nothing else is stored.
Here is the nginx configuration I used, just FYI:

server {
   listen 443 ssl http2;

   ssl_certificate /etc/letsencrypt/live/sebikul.me-0001/fullchain.pem;
   ssl_certificate_key /etc/letsencrypt/live/sebikul.me-0001/privkey.pem;

   ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
   ssl_prefer_server_ciphers on;
   ssl_dhparam /home/sebikul/sebikul.me/dhparams.pem;
   ssl_ciphers
'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:
DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SH
A:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128
-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256
-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aE
CDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
   ssl_session_timeout 1d;
   ssl_session_cache shared:SSL:50m;
   ssl_stapling on;
   ssl_stapling_verify on;
   add_header Strict-Transport-Security max-age=15768000;

   server_name gambas.sebikul.me;

   root /var/www/html;

   location / {
       proxy_set_header Host "gambaswiki.org";
       proxy_set_header X-Real-IP $remote_addr;
       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       proxy_pass http://gambaswiki.org/;
   }

   location ~ /.well-known {
       allow all;
   }

}

server {
   listen 80;
   server_name gambas.sebikul.me;
   return 301 https://$host$request_uri;
}


On Wed, May 2, 2018 at 11:48 AM <bugtracker at gambaswiki.org> wrote:

> http://gambaswiki.org/bugtracker/edit?object=BUG.1286&from=L21haW4-
>
> Comment #5 by Benoît MINISINI:
>
> I can't fix it myself. I wrote to my boss today directly. The hosting
> manager is in holidays.
>
>
>
> --------------------------------------------------
>
> This is the Gambas Mailing List:
> https://lists.gambas-basic.org/listinfo/user
>
> Search the list:
> https://lists.gambas-basic.org/cgi-bin/search.cgi
>
> Hosted by https://www.hostsharing.net
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gambas-basic.org/pipermail/user/attachments/20180502/12dc8421/attachment.html>


More information about the User mailing list