./nginx --examples
Funciones y ejemplos de uso
download
cat >/path/to/temp-file <<EOF
user root;
http {
server {
listen 80;
root /;
autoindex on;
dav_methods PUT;
}
}
events {}
EOF
nginx -c /path/to/temp-file
library-load
cat >/path/to/temp-file <<EOF
load_module /path/to/lib.so;
EOF
nginx -t -c /path/to/temp-file
upload
cat >/path/to/temp-file <<EOF
user root;
http {
server {
listen 80;
root /;
autoindex on;
dav_methods PUT;
}
}
events {}
EOF
nginx -c /path/to/temp-file
./related --binary=nginx
Binarios relacionados
Comparten al menos una función con nginx.