Skip to content

Commit

Permalink
fix(nginx): update default web root path
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 11, 2024
1 parent 1bb4dbb commit 5ea616e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nginx/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub fn setup() -> Result<String, Error> {
}

if nginx_web_root.is_empty() {
dag().set_envs(vec![("NGINX_WEB_ROOT".into(), "./".into())])?;
dag().set_envs(vec![("NGINX_WEB_ROOT".into(), "../".into())])?;
}

let stdout = dag()
Expand Down

0 comments on commit 5ea616e

Please sign in to comment.