fixed 修改跨域方式

This commit is contained in:
“xxq250” 2022-07-19 17:48:32 +08:00
parent 80ec79eb59
commit c14cfdeca7
1 changed files with 50 additions and 49 deletions

View File

@ -1,49 +1,50 @@
require_relative 'boot' require_relative 'boot'
require 'rails/all' require 'rails/all'
# Require the gems listed in Gemfile, including any gems # Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production. # you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups) Bundler.require(*Rails.groups)
module Gitlink module Gitlink
class Application < Rails::Application class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version. # Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.2 config.load_defaults 5.2
# Settings in config/environments/* take precedence over those specified here. # Settings in config/environments/* take precedence over those specified here.
# Application configuration can go into files in config/initializers # Application configuration can go into files in config/initializers
# -- all .rb files in that directory are automatically loaded after loading # -- all .rb files in that directory are automatically loaded after loading
# the framework and any gems in your application. # the framework and any gems in your application.
# #
# #
# config.gitlink = config_for(:configuration) # config.gitlink = config_for(:configuration)
# Custom directories with classes and modules you want to be autoloadable. # Custom directories with classes and modules you want to be autoloadable.
config.active_record.default_timezone = :utc config.active_record.default_timezone = :utc
config.time_zone = 'Beijing' config.time_zone = 'Beijing'
# I18n # I18n
config.i18n.default_locale = 'zh-CN' config.i18n.default_locale = 'zh-CN'
config.i18n.load_path += Dir[Rails.root.join('config/locales', '**', '*.yml').to_s] config.i18n.load_path += Dir[Rails.root.join('config/locales', '**', '*.yml').to_s]
# job # job
config.active_job.queue_adapter = :sidekiq config.active_job.queue_adapter = :sidekiq
# disable actioncable development nend true # disable actioncable development nend true
# config.action_cable.disable_request_forgery_protection = true # config.action_cable.disable_request_forgery_protection = true
config.middleware.use OmniAuth::Builder do config.middleware.use OmniAuth::Builder do
provider :cas, url: 'https://urp.tfswufe.edu.cn/cas' provider :cas, url: 'https://urp.tfswufe.edu.cn/cas'
end end
config.middleware.insert_before 0, Rack::Cors do config.middleware.insert_before 0, Rack::Cors do
allow do allow do
origins '*' # origins '*'
# location of your api origins /http:\/\/localhost(:\d+)?\z/, /^(http|https):\/\/(.*(gitlink.org.cn))$/
resource '/*', :headers => :any, :methods => [:get, :post, :delete, :options, :put, :patch] # location of your api
end resource '/*', :headers => :any, :methods => [:get, :post, :delete, :options, :put, :patch]
end end
end end
end end
end