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

Can it be used with https as well ? #24

Open
joeshua opened this issue Mar 1, 2016 · 3 comments
Open

Can it be used with https as well ? #24

joeshua opened this issue Mar 1, 2016 · 3 comments

Comments

@joeshua
Copy link

joeshua commented Mar 1, 2016

Wanted to know through browser if icecult could use https with certs if yes can it be implemented ?

@kraiz
Copy link
Collaborator

kraiz commented Mar 1, 2016

That's a configuration of your webserver (which serves icecult's html/css/js and which proxies the "rpc"-endpoint). Depending on which one you're using i maybe can give some hints.

@joeshua
Copy link
Author

joeshua commented Mar 5, 2016

Well with ngnix and Monkey webserver

@kraiz
Copy link
Collaborator

kraiz commented Mar 6, 2016

Do you already set up HTTPS on this servers? Are there any problems?
How did you serve icecult before?

Here's a simplefied version of my nginx config:

server {
    listen          443 ssl;
    server_name    my.server.com;

    ssl on;
    ssl_certificate /etc/letsencrypt/live/my.server.com/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/my.server.com/privkey.pem;

    root            /home/kraiz/icecult/app;

    location /rpc {
        proxy_pass          http://127.0.0.1:3121;  # eiskaltdcpp-daemon is running on this port
    }
}

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

No branches or pull requests

2 participants