Skip to content
Snippets Groups Projects
Unverified Commit b37c30ff authored by Nutomic's avatar Nutomic Committed by GitHub
Browse files

Move cors default to source code (#3219)

parent 154a85cc
No related branches found
No related tags found
No related merge requests found
...@@ -50,8 +50,6 @@ services: ...@@ -50,8 +50,6 @@ 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,9 +150,9 @@ pub async fn start_lemmy_server() -> Result<(), LemmyError> { ...@@ -150,9 +150,9 @@ 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_origin = std::env::var("LEMMY_CORS_ORIGIN").unwrap_or("http://localhost".into());
let cors_config = if cfg!(debug_assertions) { let cors_config = if !cfg!(debug_assertions) {
Cors::permissive() Cors::permissive()
} else { } else {
Cors::default().allowed_origin(&cors_origin) Cors::default().allowed_origin(&cors_origin)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment