두 프로젝트에서 도메인 이름을 사용해야 하는 경우 2차 도메인 이름을 사용해야 합니다. 2차 도메인 이름은 Nginx에서 다음과 같이 구성됩니다.
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
이것은 압축이 풀린 nginx.conf 파일입니다. nginx가 현재 포트 80을 수신하고 있으며 서비스 이름이 localhost임을 알 수 있습니다. 도메인 이름이 baidu.com이면 localhost를 입력하여 액세스할 수도 있습니다. .baidu.com.
방금 이해한 서비스 이름의 경우 도메인 이름이 baidu.com이라면 구성해야 할 2차 도메인 이름은 asurplus.baidu.com이고 구성 파일은 다음과 같습니다
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } server { listen 80; server_name asurplus.baidu.com; location / { proxy_pass http://127.0.0.1:8081; } } }
sbin 디렉터리로 이동하여 명령을 실행하여 nginx를 다시 시작하세요
./nginx -s reload
새 서비스를 추가했는데 이 서비스는 여전히 포트 80에서 수신 대기 중입니다. 서비스 이름이 두 번째 수준 도메인 이름이 되었습니다. asurplus를 8081 포트로 전달하여 2차 도메인 이름 구성이 완료되었습니다.
위 내용은 Nginx 두 번째 수준 도메인 이름을 구성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!