nginx设置

Posted fengnovo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx设置相关的知识,希望对你有一定的参考价值。

打开目录  /etc/nginx/nginx.conf

1.重定向

server {
      server_name localhost
      listen 80;
     
      location / {
        rewrite ^(.*)$  https://fengnovo.github.io/ last;
      }
}

2.反向代理

server {
      server_name localhost
      listen 80;
     
      location / {
        proxy_pass http://127.0.0.1:8000;
      }
}

 3.设置root目录

server {
      server_name localhost
      listen 80;
      root /var/www/html;
      index index.php index.html index.htm;

     
      location ~ \\.php$ {
        fastcgi_split_path_info ^(.+\\.php)(/.+)$;
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
      }

}
root /var/www/html;  apache默认的根目录在/var/www/html下
即只要在
/var/www/html目录下新建php目录并新建index.php,就可以在xxx.xxx.xxx.xxx/php访问到php目录下的index.php
Reference:
https://www.cnblogs.com/zqunor/p/8524646.html

以上是关于nginx设置的主要内容,如果未能解决你的问题,请参考以下文章

如何通过代码设置片段标签?

将 nginx rtmp 片段发送到 WebRTC

text 有用的nginx命令和片段

VSCode插件开发全攻略代码片段设置自定义欢迎页

linux学习:Nginx--常见功能配置片段与优化-06

错误代码:错误域 = NSCocoaErrorDomain 代码 = 3840“JSON 文本没有以数组或对象和允许未设置片段的选项开头。”