11

我已经安装rubyCAS Server在 ec2 服务器上,使用 Rails 3.2 和 Ruby 1.9.3 和配置configure.yml文件,我的

server: webrick
port: 9292
ssl_cert: /mnt/rubyonrails/testingcas.pem 

fortestingonly.managemyasc.devserver注意:我在生成自签名 SSL 时提到了域名

database:
adapter: mysql2
database: casserver
username: root
password: XXXXX
host: localhost
reconnect: true

authenticator:
class: CASServer::Authenticators::SQL
database:
adapter: mysql2
database: mmx_dev
username: root
password: XXXXX
host: localhost
user_table: userdemo
username_column: username
password_column: password

而且我还在我的本地映射了 cas 服务器/etc/hosturl184.72.242.142 fortestingonly.managemyasc.devserver

在环境文件中::cas_base_url => "https://fortestingonly.managemyasc.devserver:9292"

现在我已经启动了 Rubycas 服务器和我的应用程序服务器,但是当我尝试访问我的应用程序 URL 时,在我的应用程序日志中出现以下错误:

Started GET "/" for 122.162.49.205 at 2014-01-31 04:01:14 -0800
Processing by DashboardController#index as HTML
Guessed service url: "http://ohio-ortho.managemyasc.devserver:3000/"
Generated login url: https://fortestingonly.managemyasc.devserver:9292/login?             service=http%3A%2F%2Fohio-ortho.managemyasc.devserver%3A3000%2F
Redirecting to "https://fortestingonly.managemyasc.devserver:9292/login?service=http%3A%2F%2Fohio-ortho.managemyasc.devserver%3A3000%2F"
Redirected to https://fortestingonly.managemyasc.devserver:9292/login?service=http%3A%2F%2Fohio-ortho.managemyasc.devserver%3A3000%2F
Filter chain halted as CASClient::Frameworks::Rails::Filter rendered or redirected
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
Oink Action: dashboard#index
Memory usage: 779472 | PID: 29159
Instantiation Breakdown: Total: 1 | ActiveRecord::SessionStore::Session: 1
Oink Log Entry Complete
4

1 回答 1

0

首先,这不是@MatthewFord 指出的错误。

其次,这种重定向是由于 CAS 服务器的内置和默认功能而发生的,您可以将其视为预配置的 Web 服务器,就像脚手架一样。

第三,为了纠正这种重定向,您需要检查routes.rb文件和与 Web 服务器相关的路由文件,其中包含路由过滤器,并且某处\正在被重定向。

第四,如果这也不起作用,那么这个问题可能是由于SSL Certificate配置造成的。SSL 证书配置通常负责rootWeb 服务器的这种重定向。

于 2015-09-16T19:25:16.030 回答