diff --git a/perun/proxy/utils/nagios/check_nginx.py b/perun/proxy/utils/nagios/check_nginx.py
new file mode 100644
index 0000000000000000000000000000000000000000..d7ac825c5842a647e53cf25506f18ce9f49701bd
--- /dev/null
+++ b/perun/proxy/utils/nagios/check_nginx.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+
+from check_nginx_status.check_nginx_status import main
+
+# for program arguments check
+# https://gitlab.ics.muni.cz/perun-proxy-aai/python/check_nginx_status/
+
+if __name__ == "__main__":
+    main()
diff --git a/setup.py b/setup.py
index 8dbd2e5990f426ba124a3d9e91416cb28aa10719..f937fa76aaeed0a3ea8169e4e954b4574fccfb27 100644
--- a/setup.py
+++ b/setup.py
@@ -17,5 +17,7 @@ setuptools.setup(
         "ldap3~=2.9.1",
         "check_syncrepl_extended @ git+https://gitlab.ics.muni.cz/perun-proxy-aai/"
         "python/check_syncrepl_extended.git@main",
+        "check_nginx_status @ git+https://gitlab.ics.muni.cz/perun-proxy-aai/"
+        "python/check_nginx_status.git@master",
     ],
 )