nginx 는 다양한 언어 프레임 워 크 의 웹 서버 를 설정 합 니 다.
WordPress 는 PHP 언어 를 사용 하기 때문에 nginx 는 phop - fpm 감청 포트 에 전송 을 요청 해 야 합 니 다. beego 는 go 언어 를 사용 하기 때문에 nginx 는 beego 가 시작 하 는 웹 서버 의 감청 포트 에 전송 을 요청 해 야 합 니 다.
다음은 nginx 의 구체 적 인 설정 을 보십시오.
# For more information on configuration, see:
# * Official English Documentation: http://nginx.org/en/docs/
# * Official Russian Documentation: http://nginx.org/ru/docs/
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
events {
worker_connections 1024;
}
http {
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 /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
client_max_body_size 5M;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
# WordPress
server {
# nginx 80
listen 80;
listen [::]:80;
# abc.com
server_name abc.com;
#
root /var/www/html;
index index.html index.htm index.php;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
location ~ .php$ {
# ,php-fpm 9000
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# go web
server {
# nginx 80
listen 80;
# xyz.com
server_name xyz.com;
charset utf-8;
#
access_log /root/log/xyz.com.access.log;
#
root /root/go/src/xyz/;
location /(css|js|fonts|img)/ {
access_log off;
expires 1d;
try_files $uri @backend;
}
location / {
try_files /_not_exists_ @backend;
}
location @backend {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $http_host;
# ,go web 8080
proxy_pass http://127.0.0.1:8080;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
nginx 는 다양한 언어 프레임 워 크 의 웹 서버 를 설정 합 니 다.최근 에 go 웹 개발 을 공부 하려 면 온라인 으로 접근 할 수 있 는 환경 을 구축 해 야 합 니 다. 마침 전에 digitalocean 에서 클 라 우 드 호스트 를 빌 렸 고 그 위 에 워드 프레스 블 로그 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.