Nginx 는 windows 와 Linux 환경 에서 정적 자원 서버 를 구축 합 니 다.
Nginx 다운로드
윈도 우즈 에 설치
윈도 에 설치 하 는 것 은 비교적 간단 하 다. 다운 로드 된 Nginx 만 풀 면 된다.
2.1 설정 파일
설정 파일 에서 경로 문제 가 발생 하면 주의해 야 할 것 은 바 뀔 수 있 습 니 다. 쌍 슬 래 쉬 로 써 야 합 니 다.
# Windows
D:\work
ginx-1.17.7\upload
#
D:\\work\
ginx-1.17.7\\upload
2.2 설정 파일
2.2.1、nginx.conf
#user administrator owner;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 9000;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
include D:\\work\
ginx-1.17.7\\upload\\upload.conf;
}
2.2.2. upload. conf 파일
server
{
charset utf-8;
listen 8089;
server_name http_host;
root D:\\work\
ginx-1.17.7\\upload;
autoindex on;
add_header Cache-Control "no-cache, must-revalidate";
location / {
add_header Access-Control-Allow-Origin *;
}
}
2. window 아래 구덩이
windows 에서 Nginx 를 시작 하 는 방식 은 nginx. exe 파일 을 직접 두 번 눌 러 서 실행 합 니 다.하지만 닫 으 려 면 아래 명령 을 통 해서 도 닫 을 수 없 는 경우 가 있 습 니 다.
./nginx.exe -s stop
이 럴 때 는 아래 의 비장의 카드 를 사용 하여 모든 Nginx 서 비 스 를 직접 kill 할 수 있 습 니 다.
taskkill /im nginx.exe -f
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
전단 자동화 워 크 플 로 의 hooks예 를 들 어 우 리 는 git commt 전에 eslint 코드 검사, npm install 전에 프로젝트 의존 도 를 검사 하고 싶 습 니 다.전형 적 인 상황 에서 각종 도 구 는 특정한 동작 이 발생 할 때 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.