Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-17 Thread 'Daniel Maldonado' via CAS Community
That is exactly the point of this configuration. I did now want to rebuild every time I need to add/change a style. > On May 17, 2020, at 7:02 PM, Jason Everling wrote: > > ah yes for basic config no, i was really referring to changing the styles, > layouts, etc.. you wouldn't have to keep

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-17 Thread Jason Everling
ah yes for basic config no, i was really referring to changing the styles, layouts, etc.. you wouldn't have to keep rebuilding On Sunday, May 17, 2020 at 5:54:05 PM UTC-5, CanaryJudge wrote: > > Yes, from a development standpoint it would be. However, to just “use” > CAS we probably don’t

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-17 Thread 'Daniel Maldonado' via CAS Community
Yes, from a development standpoint it would be. However, to just “use” CAS we probably don’t need to be a developer. A containerized app with some external configuration is not unheard of :-) > On May 17, 2020, at 6:45 PM, Jason Everling wrote: > > It much easier, development wise, to use

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-17 Thread Jason Everling
It much easier, development wise, to use IntelliJ Idea to prepare and deploy CAS, you could also probably use Eclipse -- - Website: https://apereo.github.io/cas - Gitter Chatroom: https://gitter.im/apereo/cas - List Guidelines: https://goo.gl/1VRrw7 - Contributions: https://goo.gl/mh7qDG ---

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-16 Thread 'Daniel Maldonado' via CAS Community
I am comfortable doing this however it is very suspect to have to BUILD the project EVERY time I want to create a new theme. There are some properties in this section: https://apereo.github.io/cas/6.1.x/ux/User-Interface-Customization-Themes.html

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-16 Thread Root
@Matthieu Marc Thanks for the info, looks like there are some changes in the path for 6.2 version, i found all the files in 2 jar files properties files present in below jar cas-server-webapp-resources-6.2.0-SNAPSHOT.jar All default CSS / JS and HTML files are in

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-16 Thread Matthieu Marc
After having build your instance with gradle, you will find in build/overlays/bootWar/cas/WEB-INF/lib all jar files used by your instance. I am using tomcat embedded implementation, maybee jar are in another place. You will find this jar file cas-server-webapp-resources-6.1.5.jar (or another

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-15 Thread Root
@rbon, Thanks for the link, i was just going through the link, and as specified here https://apereo.github.io/cas/6.1.x/ux/User-Interface-Customization-CSSJS.html I was trying to find cas.css and other js files, but i couldn't find it in the build src directory, instead i found 2 dirs as

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-15 Thread 'Daniel Maldonado' via CAS Community
If either of you is able to customize the interface please let me know how. I have tried as described here: https://stackoverflow.com/questions/61300592/cas-switch-the-themes-based-on-different-services

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-15 Thread Ray Bon
For UI customization, see https://apereo.github.io/cas/6.1.x/ux/User-Interface-Customization.html This default service will allow all applications, https://github.com/apereo/cas/tree/master/webapp/cas-server-webapp-resources, drill down to services directory. It is already included, so all you

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-15 Thread Root
Hey Kink, Thanks i copied the files manually to /etc/cas/config/ and after few trials with variables in cas.properties I was able to authenticate via LDAP in CAS web. Next thing I have to change page texts, images and layout, you have any idea which files i have to copy and to where?. I have

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-14 Thread Kink Forumer
CAS can take its properties in so many ways this is flexible and insane at the same time. https://apereo.github.io/cas/development/configuration/Configuration-Properties.html I have personally chosen the Directory approach and more specifically with /etc/cas/... It makes it independent from the

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-14 Thread Root
Hi Kink, Thanks for the reply. Strange!, for me the application.properties , messages and all html files are in this path "/build/cas-resources/" , do we need to copy it manually to /etc/cas/config/ ? OR if we copy it in tomcat webapps it should work?, earlier versions worked like this.

Re: [cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-14 Thread Kink Forumer
Hi there, I prepared my CAS 6.2 on a VM with ./gradlew clean ./gradlew copyCasConfiguration ./gradlew explodeWar cp ./build/cas/WEB-INF/classes/application.properties /etc/cas/config/ cp ./build/cas/WEB-INF/classes/message.properties /etc/cas/config/ A gradlew run command takes the config from

[cas-user] CAS Setup( gradle overlay method): Ubuntu 20.04 + CAS 6.2 + LDAP - Need proper instructions.

2020-05-14 Thread Root
Hi All, I am trying to build a working CAS setup with primary auth as LDAP and (alternate auths in future as SAML and Database). I searched in google for proper doc for ubuntu with CAS & LDAP setup but was not able to find one, so i started giving a try myself. I found one video tutorial but