beingsane / streeme

Automatically exported from code.google.com/p/streeme
MIT License
0 stars 0 forks source link

SSL/HTTPS doesn't work #42

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Everything works with http 
2.When I force it to use SSL I can see loginpage and I can login, but when I 
press play button on a music track. It chooses the track, but doesn't start to 
play music

What is the expected output? What do you see instead?
suppose to start playing music, but nothing happens

What version of the product are you using? On what operating system?
Linux 11.10
I don't remember what version of php, mySQL I have just know they are suppose 
to be really new since I just set up server few weeks ago and back then I 
downloaded newest version...If there's easy way to see the version please quide 
me

Please provide any additional information below.

This is what I added to apache2/httpd.conf

SSLEngine On
SSLCertificateFile /path/to/SSL/file/apache.pem

ps.I'm not good at this and if you can help me please make it as simple as 
possible :D

Original issue reported on code.google.com by gr8mi...@gmail.com on 31 Dec 2011 at 7:59

GoogleCodeExporter commented 8 years ago
I think the issue is that music plays back from another port, which might be 
causing your browser to warn about the cert. Since this is a self signed 
certificate, You'll have to add the certificate's public key to your OS and on 
Firefox, you'll need to add it to the Firefox specific cert store by opening 
the public key in the browser. 

Once the self signed key is installed in the OS/browser, you'll have to change 
the   "music_proxy_port" setting in apps/client/config/app.yml to be 443 (or 
whatever secure port you're using). Once you make that change, symfony cc and 
try to play the song again. It should now use SSL for the entire app.

Original comment by chaffn...@gmail.com on 2 Jan 2012 at 11:13