mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
fix: add CORS origin environment variable (#3191)
* fix: add CORS origin environment variable * chore: formatting --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
parent
06a3f9c5aa
commit
bfc0c0e7d3
2 changed files with 5 additions and 1 deletions
|
@ -50,6 +50,8 @@ services:
|
||||||
- lemmyexternalproxy
|
- lemmyexternalproxy
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
|
# set this to the public origin that requests will come from
|
||||||
|
- LEMMY_CORS_ORIGIN=http://localhost
|
||||||
- RUST_LOG="warn,lemmy_server=debug,lemmy_api=debug,lemmy_api_common=debug,lemmy_api_crud=debug,lemmy_apub=debug,lemmy_db_schema=debug,lemmy_db_views=debug,lemmy_db_views_actor=debug,lemmy_db_views_moderator=debug,lemmy_routes=debug,lemmy_utils=debug,lemmy_websocket=debug"
|
- RUST_LOG="warn,lemmy_server=debug,lemmy_api=debug,lemmy_api_common=debug,lemmy_api_crud=debug,lemmy_apub=debug,lemmy_db_schema=debug,lemmy_db_views=debug,lemmy_db_views_actor=debug,lemmy_db_views_moderator=debug,lemmy_routes=debug,lemmy_utils=debug,lemmy_websocket=debug"
|
||||||
- RUST_BACKTRACE=full
|
- RUST_BACKTRACE=full
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -150,10 +150,12 @@ pub async fn start_lemmy_server() -> Result<(), LemmyError> {
|
||||||
.build()
|
.build()
|
||||||
.expect("configure federation");
|
.expect("configure federation");
|
||||||
|
|
||||||
|
let cors_origin = std::env::var("LEMMY_CORS_ORIGIN").unwrap_or_default();
|
||||||
|
|
||||||
let cors_config = if cfg!(debug_assertions) {
|
let cors_config = if cfg!(debug_assertions) {
|
||||||
Cors::permissive()
|
Cors::permissive()
|
||||||
} else {
|
} else {
|
||||||
Cors::default()
|
Cors::default().allowed_origin(&cors_origin)
|
||||||
};
|
};
|
||||||
|
|
||||||
App::new()
|
App::new()
|
||||||
|
|
Loading…
Reference in a new issue