- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我们最近从使用独立的 Tomcat 8 容器改为使用嵌入式 Tomcat 8 容器。我们在使用嵌入式容器使 SSL 在 Grails 3.1.6 上工作时遇到了一些麻烦。我们一直在使用带有独立容器的 APR Native Libraries 的 certificateFile 方法。我们希望在嵌入式 Tomcat 中保留这种方法,而不是更改为 keystore 方法。我尝试了 Grails 文档,深入研究了 Spring Boot 嵌入式容器文档,但还没有找到可行的解决方案。
我在 application.yml 中尝试了很多不同的配置方法。基于几个不同的文档、来源等,我最近的尝试是:
environments:
test:
grails:
server:
port: 8443
ssl:
enabled: true
certificateKeyFile: '/usr/share/app/my_domain_net.key'
certificateFile: '/usr/share/app/my_domain_net.crt'
certificateChainFile: '/usr/share/app/myCA.crt'
serverURL: "https://test.mydomain.net:8443"
tomcat:
port: 8443
ssl:
enabled: true
certificateKeyFile: '/usr/share/app/my_domain_net.key'
certificateFile: '/usr/share/app/my_domain_net.crt'
certificateChainFile: '/usr/share/app/myCA.crt'
我还尝试将其添加到 application.yml 的末尾:
server:
port: 8443
ssl:
enabled: true
certificateKeyFile: '/usr/share/app/my_domain_net.key'
certificateFile: '/usr/share/app/my_domain_net.crt'
certificateChainFile: '/usr/share/app/myCA.crt'
但这给了我一个“资源位置可能不为空”的错误。我看到的大多数例子和问题在这一点上都已经过时了。是时候问一个关于 stackoverflow 的新问题了。提前致谢!
最佳答案
即使在 LD_LIBRARY_PATH 上加载了 APR native 库,也无法使用 openssl certificateKeyFile 方法。 (我认为如果您编辑 grails-app/init/myapp/Application.groovy 并遵循 Spring添加附加连接器的文档(在 http://docs.spring.io/spring-boot/docs/current/reference/html/howto-embedded-servlet-containers.html 的第 70.9 段),但这很困难,您需要阅读 org.springframework 源代码以弄清楚如何使用 openssl 证书和 APR Native。)对我来说,它这是不值得的,所以这里是你如何使用 keystore 方法来做到这一点。
我必须使用 Tomcat keytool 方法重新生成证书。
然后,application.yml 更新为如下所示:
---
---
environments:
development:
server:
port: 8080
ssl:
enabled: false
grails:
serverURL: "http://localhost:8080"
---
---
environments:
test:
server:
port: 8443
ssl:
enabled: true
key-store: classpath:my_domain_net.jks
key-store-password: mypassword
key-password: mypassword
grails:
serverURL: "https://test.mydomain.net:8443"
我准备证书的过程是:
1) create a directory for ssl_certificates
2) pick a Certificate Authority (I chose DigiCert)
3) use the CA's instructions for generating a csr for Tomcat:keytool
4) the CA's keytool command asks for a keystore password and key password
5) submit the csr and wait ~10 minutes for the cert to be issued
6) download the issued certificate as my_domain_net.p7b into the
ssl_certificates folder created above
7) keytool -import -trustcacerts -alias server -file my_domain_net.p7b \
-keystore my_domain_net
8) copy my_domain_net.jks into src/main/resources/ of your web project.
关于spring - 如何在 Grails 3.1.6+ 中配置 SSL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37557065/
我是一名优秀的程序员,十分优秀!