nginx 프로필 및 일반 모듈
5392 단어 nginx
nginx 설치 디 렉 터 리
# Nginx , logrotate
/etc/logrotate.d/nginx
# Nginx
/etc/nginx
/etc/nginx/nginx.conf
/etc/nginx/conf.d
/etc/nginx/conf.d/default.conf
# cgi ,fastcgi
/etc/nginx/fastcgi_params
/etc/nginx/scgi_params
/etc/nginx/uwsgi_params
#
/etc/nginx/koi-utf
/etc/nginx/koi-win
/etc/nginx/win-utf
# http Content-Type
/etc/nginx/mime.types
#
/etc/sysconfig/nginx
/etc/sysconfig/nginx-debug
/usr/lib/systemd/system/nginx-debug.service
/usr/lib/systemd/system/nginx.service
# Nginx
/etc/nginx/modules
/usr/lib64/nginx/modules
# Nginx
/usr/sbin/nginx
/usr/sbin/nginx-debug
# Nginx
/usr/share/doc/nginx-1.12.2
/usr/share/doc/nginx-1.12.2/COPYRIGHT
/usr/share/man/man8/nginx.8.gz
# Nginx
/var/cache/nginx
# Nginx
/var/log/nginx
nginx 변수
HTTP :
$http_user_agent,$http_cookie HTTP 。
:
$args, ;
$content_length, HTTP "Content-Length";
$content_type, "Content-Type";
$document_root, ;
$document_uri, $uri ;
$host, "Host", Host , ;
$limit_rate, ;
$request_method, , "GET"、"POST" ;
$remote_addr, ;
$remote_port, ;
$remote_user, , ;
$request_filename,
$request_body_file, ??
$request_uri, URI, ;
$query_string, $args ;
$scheme, , http https, rewrite ^(.+)$ $scheme://example.com$1 redirect;
$server_protocol, ,"HTTP/1.0" "HTTP/1.1";
$server_addr, , listen , ( );
$server_name, ;
$server_port, ;
$uri, URI, , 。
nginx 모듈
nginx 공식 중국어 - 모듈
http - auth 모듈
# htpasswd
yum install httpd
#
cd /etc/nginx
# auth_conf , jehad
htpasswd -c ./auth_conf jehad
# ,
htpasswd ./auth_conf jhcoder
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
# admin ip ( ) remote_addr, , frp
# location ~ ^/admin.html {
# root /home/project/nginx-code;
# deny all;
# allow 113.87.88.143;
# }
location ~ ^/admin.html {
root /home/project/nginx-code;
auth_basic "....... .........";
auth_basic_user_file /etc/nginx/auth_conf;
}
}
1、 2、
1、nginx+lua 2、nginx+ladp nginx-auth-ladp
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.