Probably not, because chances are there *is* one dodgy file in that server
2018-11-26 33054, 2018
reosarevok
It's just if Google doesn't tell them what to take down, good luck finding it
2018-11-26 33003, 2018
CatQuest
sowhat I want ot know is. should the IA actually remove that file or ot?
2018-11-26 33024, 2018
CatQuest
i mena, if it's a hisotrical phisihing fiel it might be inteeresting :D
2018-11-26 33026, 2018
CatQuest
but yea
2018-11-26 33019, 2018
yvanzo
CatQuest: That's the issue, the warning might be legitimate, but it is not necessarily about CAA images.
2018-11-26 33046, 2018
reosarevok
Sure, but they are server wide warnings
2018-11-26 33051, 2018
CatQuest
weird though. you'd think it woudl be in gogles inerest with safe browsing to actually tell the IA what is triggering it so that wthat fiel coudl be removed...
2018-11-26 33000, 2018
reosarevok
So unless they change the way the whole system works...
2018-11-26 33040, 2018
reosarevok
CatQuest: then (i)legitimate phishers could figure out what Google is testing for and avoid it
2018-11-26 33044, 2018
reosarevok
That's why
2018-11-26 33057, 2018
CatQuest
but like. wouldn't like. any phishing file indexed by like actually google itself mean that google's server would flop as well? 🤔
2018-11-26 33021, 2018
CatQuest
but IA isn't a phiser. it's the IA! it's in IA's interest ot remove such a file!
2018-11-26 33028, 2018
duh is now known as legoktm
2018-11-26 33035, 2018
CatQuest
duh
2018-11-26 33037, 2018
CatQuest
:D
2018-11-26 33010, 2018
reosarevok
Sure. There's a chance because it's the IA they will eventually tell them what the issue is, when they realize what's going on
2018-11-26 33042, 2018
CatQuest
let's hope so
2018-11-26 33055, 2018
CatQuest
we have to collaborate to make sure the web is safe and usable both :nod:
Mr_Monkey: There were some issues with the Dockerfile over the weekend
2018-11-26 33012, 2018
github joined the channel
2018-11-26 33012, 2018
github
[listenbrainz-server] paramsingh opened pull request #464: Check if channel is open before entering with block (master...channelclosed) https://git.io/fpuXt
2018-11-26 33012, 2018
github has left the channel
2018-11-26 33044, 2018
iliekcomputers
ruaok: ping, quick one ^^. There are lots of Sentry errors due to ChannelClosed
Freso: it works for me, served, a SSL cert from LE valid till 16/02/2019; what do you observe?
2018-11-26 33045, 2018
Freso
"Der opstod en fejl under forbindelsen til community.metabrainz.org. Svaret fra OCSP-serveren var ødelagt eller var på anden måde fejlbehæftet. Fejlkode: SEC_ERROR_OCSP_MALFORMED_RESPONSE"
2018-11-26 33050, 2018
Leo_Verto
seems to be the OCSP server
2018-11-26 33001, 2018
zas
Freso: which browser are you using ?
2018-11-26 33019, 2018
zas
Does it happen with another browser on the same machine?
2018-11-26 33040, 2018
zas
It doesn't happen for me on any browser or machines i tried, does it happen for someone else here?
You can start any service directly in a few commands and you dont have to depend on os differences
2018-11-26 33026, 2018
Leo_Verto
which means that compose just looks for the Dockerfile, builds it and runs it all at once
2018-11-26 33057, 2018
Cyna
How does the sign-in work ?
2018-11-26 33022, 2018
Cyna
For me it got me redirected to musicbrainz, then it shows me invalid client
2018-11-26 33023, 2018
Leo_Verto
what you could do is run postgres, elasticsearch, etc. in docker and -site locally which means you wouldn't have to rebuild between changes
2018-11-26 33036, 2018
Leo_Verto
yeah, you need to set up MB oauth tokens for that to work
2018-11-26 33052, 2018
Cyna
I set up the config.json in the site folder
2018-11-26 33008, 2018
Cyna
shouldn't that do the job
2018-11-26 33001, 2018
Leo_Verto
that folder unfortunately isn't being used, if you look at the Dockerfile apparently being used for -site, it just clones the latest bb-site master from github https://github.com/bookbrainz/bookbrainz-docker/b…
2018-11-26 33015, 2018
Leo_Verto
this setup works for deployment but not really for development
2018-11-26 33018, 2018
Leo_Verto
what you could do is use the postgres container set up by bb-docker, publish port 5432 instead of exposing it, run bb-site directly on your machine and connect to postgres as if it was also running locally
2018-11-26 33029, 2018
Leo_Verto
kinda hacky but should work until a more permanent solution is in place
2018-11-26 33045, 2018
Cyna
Will try
2018-11-26 33011, 2018
Cyna
Still getting invalid client though I replaced the credentials in the `docker-compose.yml
2018-11-26 33038, 2018
Leo_Verto
those changes will only be applied on an image rebuild. run "docker-compose run site" to rebuild the image with the new arguments
2018-11-26 33042, 2018
Cyna
I ran the whole setup again
2018-11-26 33047, 2018
Cyna
Didnt work
2018-11-26 33018, 2018
Leo_Verto
when does "docker image ls" say the bookbrainz-docker_site image has been created?
2018-11-26 33044, 2018
Cyna
When running `docker-compose site`. it doesnt detach itself
2018-11-26 33005, 2018
Cyna
Is it expected behaviour ?
2018-11-26 33009, 2018
Leo_Verto
yeah, you can kill it, the point is that it rebuilds the image with the new MB_OAUTH vars
2018-11-26 33017, 2018
Leo_Verto
*args
2018-11-26 33042, 2018
Leo_Verto
in docker args are only updated at build time while environment variables can be updated during a container's start
2018-11-26 33040, 2018
Cyna
Can I use `docker-compose up -d site` instead ?
2018-11-26 33006, 2018
Leo_Verto
the thing is, you shouldn't run site directly, it doesn't link to the other containers
2018-11-26 33042, 2018
Leo_Verto
which is an odd design decision but that's the way the compose file is set up right now
2018-11-26 33040, 2018
Cyna
I think having so many links and interconnections makes thing complex and hard to understand
2018-11-26 33012, 2018
Leo_Verto
yeah, it certainly isn't ideal for development
2018-11-26 33031, 2018
Cyna
tired trying to set up the whole thing
2018-11-26 33042, 2018
Cyna
Thanks for the help Leo_Verto
2018-11-26 33003, 2018
Leo_Verto
No problem, sorry about the bad experience you're having with this :/