Enhance act_runner setup with jq installation verification and systemd service configuration
All checks were successful
Deploy ACT Runner Installer / deploy (push) Successful in 24s
All checks were successful
Deploy ACT Runner Installer / deploy (push) Successful in 24s
This commit is contained in:
20
nginx.conf
Normal file
20
nginx.conf
Normal file
@@ -0,0 +1,20 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index install.sh;
|
||||
|
||||
# Serve the installer at the root path
|
||||
location = / {
|
||||
try_files /install.sh =404;
|
||||
default_type text/plain;
|
||||
}
|
||||
|
||||
# Ensure install.sh is served as text
|
||||
location = /install.sh {
|
||||
default_type text/plain;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user