18143453325 在线咨询 在线咨询
18143453325 在线咨询
所在位置: 首页 > 营销资讯 > 建站知识 > linux 同一个ip 绑定两个不同的域名 访问两个不同的项目

linux 同一个ip 绑定两个不同的域名 访问两个不同的项目

时间:2023-02-01 08:20:01 | 来源:建站知识

时间:2023-02-01 08:20:01 来源:建站知识



phubing 2020-01-08 11:52:17

267

收藏
分类专栏: Nginx 文章标签: Nginx 域名 IP
版权

用两个不同的域名绑定同一个ip访问两个不同的项目是完全可以做到的,远没有想象的那么复杂,使用服务器环境LNMP
要实现这个功能首先需要配置nginx
打开nginx的配置文档(nginx.conf)



  1. server {

  2. listen 80;          //端口

  3. server_name www.xxxxx.com;      //域名

  4. access_log xxxxx;      //日志存储的位置

  5. root xxxxx;  //项目根路径

  6. index index.html index.htm index.php;

  7. fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;


  8. location / {

  9. try_files $uri $uri/ /index.php?$query_string;

  10. }


  11. location /nginx_status {

  12. stub_status on;

  13. access_log off;

  14. allow xxx.xxx.xx.xx;

  15. deny all;

  16. }

  17. location ~ [^/]/.php(/|$) {

  18. #fastcgi_pass remote_php_ip:9000;

  19. fastcgi_pass unix:/dev/shm/php-cgi.sock;

  20. fastcgi_index index.php;

  21. include fastcgi.conf;

  22. }

  23. location ~ .*/.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {

  24. expires 30d;

  25. access_log off;

  26. }

  27. location ~ .*/.(js|css)?$ {

  28. expires 7d;

  29. access_log off;

  30. }

  31. }

以上只是一个项目的配置,同样的我们想同一个服务器打在两个不同的项目那么所需要做的就是复制相同的一份代码,指定不同的项目路径



  1. server {

  2. listen 80;    //端口

  3. server_name www.xxxx.com;    //域名

  4. access_log /data/wwwlogs/access_nginx.log combined;

  5. root xxxxxxx;    //项目根路径

  6. index index.html index.htm index.php;

  7. fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;


  8. location / {

  9. try_files $uri $uri/ /index.php?$query_string;

  10. }


  11. location /nginx_status {

  12. stub_status on;

  13. access_log off;

  14. allow 127.0.0.1;

  15. deny all;

  16. }

  17. location ~ [^/]/.php(/|$) {

  18. #fastcgi_pass remote_php_ip:9000;

  19. fastcgi_pass unix:/dev/shm/php-cgi.sock;

  20. fastcgi_index index.php;

  21. include fastcgi.conf;

  22. }

  23. location ~ .*/.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {

  24. expires 30d;

  25. access_log off;

  26. }

  27. location ~ .*/.(js|css)?$ {

  28. expires 7d;

  29. access_log off;

  30. }

  31. }

要想实现这个功能的中心就在于域名的不同和项目根路径的不同

关键词:访问,项目,同一

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭