Hello Murat,

please do not write personal emails, send emails to user@ list instead

According to your question:
I'm not expert in nginx configuration
Here is working config for Apache HTTPD as front-end proxy:
https://stackoverflow.com/questions/51721771/apache-openmeetings-4-0-4-csrf-attack-when-using-apache2-as-proxypass


On Mon, 8 Jul 2019 at 02:02, murat kopar <[email protected]> wrote:

> I have access to a site with" Https, ", but I can't sign in. What should I
> do? Thank you....
> I configuration;
> Ubuntu 18.04
> Tomcat3
> Nginx
> Openmeetings 5.0.0
> Letsencrypt
> Nginx as a Reverse Proxy
> Nginx configuration ;
> server {
>     listen 80;
>     server_name demo.example.com;
>     return 301 https://$host$request_uri;
> }
>
> server {
>     listen 443;
>     server_name demo.example.com;
>
>     ssl_certificate           /etc/letsencrypt/live/
> demo.example.com/fullchain.pem;
>     ssl_certificate_key       /etc/letsencrypt/live/
> demo.example.com/privkey.pem;
>
>     ssl on;
>     ssl_session_cache  builtin:1000  shared:SSL:10m;
>     ssl_protocols  TLSv1 TLSv1.1 TLSv1.2;
>     ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
>     ssl_prefer_server_ciphers on;
>
>     access_log  /var/log/nginx/openmeetings.access.log;
>
> location / {
>     proxy_pass            http://my ip :5080;
>     proxy_set_header    host $host;
>     proxy_http_version  1.1;
>     proxy_set_header upgrade $http_upgrade;
>     proxy_set_header connection "upgrade";
>     }
> }
>


-- 
WBR
Maxim aka solomax

Reply via email to