Add domain cli

This commit is contained in:
Andros Fenollosa 2020-06-11 19:39:38 +02:00
parent 0e5e981e79
commit da0d8c07ca
3 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
domain: localhost domain: "domain.com"
domain-cli: "domain.com"
debug: true debug: true
port: 7404 port: 7404
smtp-from: "no-reply@domain.com" smtp-from: "no-reply@domain.com"

View File

@ -1,4 +1,4 @@
(defproject api2smtp "1.0.3" (defproject api2smtp "1.0.4"
:description "Send emails through an Endpoint API" :description "Send emails through an Endpoint API"
:url "https://github.com/tanrax/api2smtp" :url "https://github.com/tanrax/api2smtp"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"

View File

@ -12,7 +12,7 @@
(-> all-routes (-> all-routes
(wrap-defaults (assoc-in site-defaults [:security :anti-forgery] false)) (wrap-defaults (assoc-in site-defaults [:security :anti-forgery] false))
(wrap-cors (wrap-cors
:access-control-allow-origin [(re-pattern (if (config :debug) ".*" (config :domain)))] :access-control-allow-origin [(re-pattern (if (config :debug) ".*" (config :domain-cli)))]
:access-control-allow-methods [:get :post]) :access-control-allow-methods [:get :post])
(#(if (config :debug) (wrap-reload %) %)))) (#(if (config :debug) (wrap-reload %) %))))