초보 Nginx
7316 단어 nginx
Nginx 는 현재 가장 유행 하 는 웹 서버 중 하나 로 Apache 에 비해 Nginx 는 높 은 병행 상황 에서 큰 성능 우 위 를 가진다.
Nginx 는 높 은 확장 성, 높 은 신뢰성, 낮은 메모리 소모 등 특징 을 가지 고 있 으 며, Nginx 는 수많은 공식 기능 모듈, 제3자 기능 모듈 을 가지 고 있 으 며, 이러한 기능 모듈 은 중첩 하여 더욱 강력 하고 복잡 한 기능 을 실현 할 수 있다.
Nginx 를 선택 한 핵심 이 유 는 높 은 병행 요 구 를 지원 하 는 동시에 효율 적 인 서 비 스 를 유지 할 수 있 기 때문이다.
2. Nginx 의 설치 및 실행 Nginx 공식 다운로드 주소: http://nginx.org/en/download.html
압축 풀기: $tar - zxvf nginx - 1.4.4. tar. gz
nginx 디 렉 터 리 에 들 어가 다음 명령 을 수행 합 니 다.
$ ./configure$ make$ make install
시작 Nginx: $/ usr / local / nginx / sbin / nginx
Nginx 가 성공 적 으로 실행 되 었 는 지 확인 하기: http://localhost/ 을 열 어 Nginx 환영 인터페이스 가 있 는 지 확인 합 니 다.
Nginx 서비스 정지: / usr / local / nginx / sbin / nginx - s stop
3. 간단 한 HTTP 모듈 개발 - Hello World
Nginx 는 제3자 모듈 을 Nginx 에 컴 파일 하 는 간단 한 방식 을 제공 합 니 다.
우선 원본 코드 파일 을 모두 디 렉 터 리 에 넣 습 니 다.
my_test_module/
├── config
└── ngx_http_mytest_module.c
configure 는 이 모듈 을 Nginx 에 어떻게 컴 파일 하 는 지 알려 주 는 데 사용 되 며 configure 라 고 명명 해 야 합 니 다.configure 파일 은 셸 스 크 립 트 를 실행 할 수 있 습 니 다. 다음 세 개의 변 수 를 정의 해 야 합 니 다.
ngx_addon_name: configure 가 실 행 될 때 만 사용 합 니 다. 일반적으로 모듈 이름 으로 설정 합 니 다.HTTP_MODULES: 모든 HTTP 모듈 이름 을 저장 하고 모든 HTTP 모듈 간 에 빈 칸 으로 연 결 됩 니 다.NGX_ADDON_SRCS: 새로 추 가 된 모듈 의 소스 코드 를 만 드 는 데 사 용 됩 니 다. 컴 파일 할 소스 코드 여러 개가 빈 칸 으로 연결 되 어 있 습 니 다.
여기 configure 내용 은 다음 과 같 습 니 다.
ngx_addon_name=ngx_http_mytest_module
HTTP_MODULES="$HTTP_MODULES ngx_http_mytest_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_mytest_module.c"
여기 ngxhttp_mytest_module. c 내용 은 다음 과 같 습 니 다.
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
static char *
ngx_http_mytest(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static ngx_int_t ngx_http_mytest_handler(ngx_http_request_t *r);
static ngx_command_t ngx_http_mytest_commands[] =
{
{
ngx_string("mytest"),
NGX_HTTP_MAIN_CONF | NGX_HTTP_SRV_CONF | NGX_HTTP_LOC_CONF | NGX_HTTP_LMT_CONF | NGX_CONF_NOARGS,
ngx_http_mytest,
NGX_HTTP_LOC_CONF_OFFSET,
0,
NULL
},
ngx_null_command
};
static ngx_http_module_t ngx_http_mytest_module_ctx =
{
NULL, /* preconfiguration */
NULL, /* postconfiguration */
NULL, /* create main configuration */
NULL, /* init main configuration */
NULL, /* create server configuration */
NULL, /* merge server configuration */
NULL, /* create location configuration */
NULL /* merge location configuration */
};
ngx_module_t ngx_http_mytest_module =
{
NGX_MODULE_V1,
&ngx_http_mytest_module_ctx, /* module context */
ngx_http_mytest_commands, /* module directives */
NGX_HTTP_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
NGX_MODULE_V1_PADDING
};
static char *
ngx_http_mytest(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
ngx_http_core_loc_conf_t *clcf;
// mytest ,clcf location
// , , main、srv loc ,
//http{} server{} ngx_http_core_loc_conf_t
clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
//http NGX_HTTP_CONTENT_PHASE ,
// 、URI mytest ,
// ngx_http_mytest_handler
clcf->handler = ngx_http_mytest_handler;
return NGX_CONF_OK;
}
static ngx_int_t ngx_http_mytest_handler(ngx_http_request_t *r)
{
// GET HEAD , 405 Not Allowed
if (!(r->method & (NGX_HTTP_GET | NGX_HTTP_HEAD)))
{
return NGX_HTTP_NOT_ALLOWED;
}
//
ngx_int_t rc = ngx_http_discard_request_body(r);
if (rc != NGX_OK)
{
return rc;
}
// Content-Type。 ,ngx_str_t
//ngx_string, ngx_str_t data len
ngx_str_t type = ngx_string("text/plain");
//
ngx_str_t response = ngx_string("Hello World!");
//
r->headers_out.status = NGX_HTTP_OK;
// , Content-Length
r->headers_out.content_length_n = response.len;
// Content-Type
r->headers_out.content_type = type;
// http
rc = ngx_http_send_header(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only)
{
return rc;
}
// ngx_buf_t
ngx_buf_t *b;
b = ngx_create_temp_buf(r->pool, response.len);
if (b == NULL)
{
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
// Hello World ngx_buf_t
ngx_memcpy(b->pos, response.data, response.len);
// , last
b->last = b->pos + response.len;
//
b->last_buf = 1;
// ngx_chain_t
ngx_chain_t out;
// ngx_buf_t
out.buf = b;
// next NULL
out.next = NULL;
// ,http ngx_http_finalize_request
//
return ngx_http_output_filter(r, &out);
}
설정 파일 수정: $vim / usr / local / nginx / conf / nginx. conf, 아래 설정 추가:
http {
include mime.types;
default_type application/octet-stream;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.php index.html index.htm;
}
location /test {
mytest;
}
}
}
컴 파일 설치 모듈:
./configure --prefix=/usr/local/nginx( ) --add-module=/home/luhaiyang/ngxdev/ngx_http_mytest( )
make
sudo make install
테스트 모듈: $
curl -i http:
//localhost/test
HTTP/1.1 200 OK
Server: nginx/1.4.4
Date: Mon, 02 Dec 2013 09:35:50 GMT
Content-Type: text/plain
Content-Length: 12
Connection: keep-alive
Hello World!
을 읽 고 Nginx 의 기본 개념 을 간단하게 알 았 으 며 책 을 참조 하여 정적 웹 서버 를 설정 했다.나의 학습 습관 에서 나 는 먼저 간단 한 예 를 빨리 실현 하 는 것 을 좋아한다. 이렇게 하면 새로운 사물 에 대해 대략적인 전체적인 이 해 를 가지 고 그것 이 도대체 무엇 인지, 무엇 을 할 수 있 는 지 알 고 나 서 계속 깊이 파고 들 어 이해 하 는 것 을 좋아한다.
최근 에 기우 ZK 와 학습 습관 에 대해 토론 을 했 는데 그 는 그 동안 자바 교육 을 받 고 나 와 그의 고민 을 이야기 했다.그 는 현재 내용 을 잘 파악 해야만 다음 단계 의 공 부 를 계속 할 수 있다 고 생각 하기 때문에 그의 프로젝트 매니저 가 뒤의 지식 장 을 미리 설명 한 후에 나 는 그 와 나의 학습 방법 을 공유 했다.나 는 이것 이 두 가지 서로 다른 학습 습관 이 라 고 생각한다. 오직 자신 에 게 맞 는 것 만 이 가장 좋다 고 생각한다.
참고 자료: < Nginx 깊이 이해 >
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.