У меня есть приложение для рельсов 4, и я хочу запустить его с помощью SSL на webrick. Что мне нужно сделать?webrick используя ssl Что делать?
Я добавил сертификат SSL для домена и как этот запущен при
Bundle EXEC рельсов S -e производства -p 3001 --binding = 0.0.0.0
Теперь я получил эту ошибку:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Apache Server at domain.de Port 443
Благодаря
директив, установленные для Apache HTTPS
ProxyPreserveHost On
ProxyRequests On
ServerName domain.de
ServerAlias *.domain.de
ProxyPass/https://subdomain.domain.de:3001/
ProxyPassReverse/https://subdomain.domain.de:3001/
SSLEngine on
Похоже контратип http://stackoverflow.com/questions/3640993/how-do-you-configure-webrick-to-use-ssl-in -rails? lq = 1 Я бы проголосовал за закрытие, но щедрость предотвращает близкие голоса, которые кажутся неправильными. –