Mac 설정 Nginx
1602 단어 Nginx
가장 간단 하고 추천 하 는 방법 은 brew 명령 으로 설치 하 는 것 입 니 다. 전 제 는 mac 가 brew 를 설치 하 는 것 입 니 다.
brew install nginx
2. nginx 시작
nginx
3. 홈 페이지 에 접근 하기 전에 nginx 설정 파일 을 알 아 보 겠 습 니 다 (nginx. conf):
cat /usr/local/etc/nginx/nginx.conf
디 스 플레이 코드: \ # user nobody;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 8080; # 8080 , ,
server_name localhost; # localhost
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html; #
index index.html index.htm; #
}
.....( 1000 )
4. 프로필 을 통 해 기본 사이트 루트 디 렉 터 리 는 html (즉 / usr / local / var / www) 이 고 기본 색인 파일 은 index. html 와 index. htm 인 것 을 볼 수 있 습 니 다. 이 유 를 찾 을 수 있 습 니 다. 원래 루트 디 렉 터 리 에 첫 페이지 색인 파일 이 없 으 면 수 동 으로 만 듭 니 다.
cd / usr / local / var / www / / www 디 렉 터 리 에 들 어가 touch index. html / 새로운 index. html 파일 vim index. html / 편집 파일 을 만 듭 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
linux2에 nginx 설치설치 가능한 nginx를 확인하고, 해당 nginx를 설치한다. localhost 혹은 해당 ip로 접속을 하면 nginx 화면을 볼 수 있다....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.