Fixed tests
[arvados.git] / services / api / script / rails
index 7c4ec52dfc8d73edea1a1274a55de13dbe0d055b..2167b0431882ef9eeef5acd733dc3b03312c6f34 100755 (executable)
@@ -13,7 +13,7 @@ module Rails
     class Server < ::Rack::Server
         def default_options
             super.merge({
-                :Port => 3000,
+                :Port => 3001,
                 :environment => (ENV['RAILS_ENV'] || "development").dup,
                 :daemonize => false,
                 :debugger => false,
@@ -21,10 +21,6 @@ module Rails
                 :config => File.expand_path("config.ru"),
                 :SSLEnable => true,
                 :SSLVerifyClient => OpenSSL::SSL::VERIFY_NONE,
-                :SSLPrivateKey => OpenSSL::PKey::RSA.new(
-                       File.open("config/api.clinicalfuture.com.key.pem").read),
-                :SSLCertificate => OpenSSL::X509::Certificate.new(
-                       File.open("config/api.clinicalfuture.com.crt.pem").read),
                 :SSLCertName => [["CN", WEBrick::Utils::getservername]]
             })
         end