This article describes how to implement coexistence of Nginx and Apache on Linux server. Share with you for your reference, the details are as follows: There cannot be two programs listening on the same port at the same time. So we changed our thinking and solved the problem of some websites running under nginx and some websites running under Apache coexisting on the same server. Solution:
Solution:
Website under Apache: Add in nginx.conf server { listen 80; server_name www.one.ityangs.cn one.ityangs.cn; location / { proxy_pass http://127.0.0.1:8080; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } Add in httpd.conf <virtualhost *:8080> ServerName www.one.ityangs.cn ServerAlias www.one.ityangs.cn one.ityangs.cn DocumentRoot /www/one DirectoryIndex index.php index.html <Directory /www/one> Options +Includes +FollowSymLinks -Indexes AllowOverride All Order Deny,Allow Allow from All </Directory> </virtualhost> Website under Nginx: Add in nginx.conf server { listen 80; server_name two.ityangs.cn www.two.ityangs.cn; root /www/two; location /{ index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } error_page 404 /var/www/html/404.html; } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } } I hope this article will help you maintain your Linux server. You may also be interested in:
|
<<: How to make your own native JavaScript router
>>: MySQL SQL statement analysis and query optimization detailed explanation
Specify in CSS style file #class td /*Set the tab...
(When a web page is loading, sometimes there is t...
Table of contents Preface application Filters Dra...
CSS: Copy code The code is as follows: html,body{ ...
Table of contents 1. How to locate and optimize s...
Table of contents Preface What is a filter How to...
Which parameter does the rpm command use to insta...
This article shares the installation steps and us...
Table of contents Preface The value of front-end ...
MyISAM, a commonly used storage engine in MySQL c...
The main text starts below. 123WORDPRESS.COM Down...
background There is a requirement in the project ...
First, what is database partitioning? I wrote an ...
I haven’t blogged for half a year, which I feel a ...
As shown below: Mainly execute authorization comm...