about summary refs log tree commit diff
path: root/pkgs/servers/http/openresty
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2023-11-20 22:51:21 +0300
committerIzorkin <izorkin@elven.pw>2023-12-17 16:51:29 +0300
commit00cb53de4fa2ba9fcdb52f504943d6ec8ebe5ce5 (patch)
treecbde498944cda6d9e30cfcd7dbbcd8e87eca00cc /pkgs/servers/http/openresty
parente9b7a386120656f13c4a2bab676e81056f97171d (diff)
nginx: fix nginx binary pathname
Diffstat (limited to 'pkgs/servers/http/openresty')
-rw-r--r--pkgs/servers/http/openresty/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/http/openresty/default.nix b/pkgs/servers/http/openresty/default.nix
index 433d8fd3969b8..971c1e28cdb0c 100644
--- a/pkgs/servers/http/openresty/default.nix
+++ b/pkgs/servers/http/openresty/default.nix
@@ -41,7 +41,7 @@ callPackage ../nginx/generic.nix args rec {
 
   postInstall = ''
     ln -s $out/luajit/bin/luajit-2.1.0-beta3 $out/bin/luajit-openresty
-    ln -s $out/nginx/sbin/nginx $out/bin/nginx
+    ln -s $out/nginx/bin/nginx $out/bin/nginx
     ln -s $out/nginx/conf $out/conf
     ln -s $out/nginx/html $out/html
   '';