tomcat7 - Grails 3 Error loading CSS when deploying to apache -
amigos
when deploying grails 3.1.4 app server apache , tomcat (apache root / redirecting grails app in tomcat 8080), ´asset:stylesheet' still generating link deployed app (´http://....com/og/assets/application-519a.css´), not root (´http://....com/assets/application-519a.css´).
of course, ´serverurl´ has valid value
the httpd.conf hast below chunk of code
<virtualhost *:80> servername ....com serveralias *.....com proxyrequests off proxypass / http://localhost:8080/og/ proxypassreverse / http://localhost:8080/og/ </virtualhost>
don't know i'm doing wrong, welcome, , in advance !
juan
fixed !
in configuration.yml
, propper assets url
configuration is:
. . . production: grails: assets: url: "http://....com/assets/" datasource: dbcreate: update . . .
more information !
Comments
Post a Comment