Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Question]: deploying other services on my domain with ssl including rag flow #4240

Open
sahilsharma-tmpl opened this issue Dec 26, 2024 · 1 comment
Labels
question Further information is requested

Comments

@sahilsharma-tmpl
Copy link

Describe your problem

i have four services running on my server with ragflow , i want to add ssl certficate for other services on port 443 but ragflow is using port 443 so i cannot add ssl in my nginx can you please help us out in this . it will be really helpful!

@sahilsharma-tmpl sahilsharma-tmpl added the question Further information is requested label Dec 26, 2024
@cike8899
Copy link
Contributor

You can try this

server 
   {
        listen       443  ssl;
        server_name test1.abc.com;
        ssl_certificate      /home/nginx/ssl/test1.abc.com.pem;
        ssl_certificate_key  /home/nginx/ssl/test1.abc.com.key;
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
}

server 
   {
        listen       443 ssl;
        server_name  test2.abc.com;
        ssl_certificate      /home/nginx/ssl/test2.abc.com.pem;
        ssl_certificate_key  /home/nginx/ssl/health.kp-china.com.key;
        ssl_session_timeout 5m;
        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants