-
Notifications
You must be signed in to change notification settings - Fork 26
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
KITANA DOCKER - MIXED CONTENT ERROR #26
Comments
Try adding |
You might also need |
thanks for the reply... :) I'm sorry but i not really sure what you mean with your suggestion? Using a .yml file to install kitana: `
|
Well you need to change the way the Kitana container starts: https://github.com/pannal/Kitana#mount-on-kitana-and-behind-a-reverse-proxy-example-nginx It needs -P at least to work behind a reverse proxy as a command line parameter. |
I've never used portainer, judging from the wiki, it only supports overwriting the command used, not the option to add parameters. You can try setting the command to |
ok thank you, i will see if i could figure it out. thanks for taking time |
Ah can you detail how you entered the necessary data into the interface? I'll add that to the README then. |
Thank you for sharing You should add this to the Wiki as many people use portainer as there docker frontend |
No idea to be honest. Does NGINX like spaces after the location comparator? |
It shouldnt matter cuz if it did , it wouldnt start up properly |
Well, if it works without NGINX in front of it, it's not Kitana's fault. My NGINX reverse proxy config looks like this:
|
i will try your config...i know its not kitana, its nginx but i couldnt find the way to add it properly |
It works :) thanks @pannal |
Maybe you guys can help me. I have kitana installed and working without NGINX. I also use Portainer and have it set as above. When i add to NGINX, even using pannal config, it will 404. https://domain.com/kitana will work till it goes to https://domain.com/token. So I added "token" into the config. Now it craps out at https://domain.com/choose_plugin?XXXXXXXXXXXX. Am I going to need to add every "location" that kitana is looking for? Just for the heck of it, I have also added a volume to the kitana data from the letsencrypt container. `location ^~ /kitana/pms_asset {
|
You didn't set the prefix and/or behind proxy mode. Please see Readme. |
trying to run on windows for plex all requirements ment and installed i get this error E:\kitana> also cannot install it.. updated pip to latest E:\kitana>pip3.9 install plugins |
hey,
i need some help regarding KITANA DOCKER.
i am running Kitana over nginx proxy server with a specific subdomain, but when i load the page i get an error in google_chrome.
UNSAFE SCRIPTS
does somebody know how i can fix this?
My Nginx Config looks like this:
`#Upstream to kitana
upstream kitana {
server ip_to_server:65535;
keepalive 32;
}
server {
listen 443 http2 ssl;
}
server {
listen 80;
listen [::]:80;
server_name kitana.mystreamnet.club;
return 301 https://$server_name$request_uri;
}`
Thanks in advance..
The text was updated successfully, but these errors were encountered: