Nginx以及修改配置文件

安装nginx

  1. # 安装nginx
  2. sudo apt-get install nginx
  3. # 查看安装的版本
  4. sudo nginx -v

打开nginx配置文件

  1. # nginx和它的相关模块的运行由它的配置文件决定.
  2. # nignx配置文件的默认名称是nginx.conf
  3. # 其配置文件路径/usr/local/nginx/conf, /etc/nginx, 或者/usr/local/etc/nginx.
  4. # nginx会查找到这个目录下的文件 /etc/nginx/nginx.conf
  5. sudo vim /etc/nginx/nginx.conf

在/etc/nginx/nginx.conf中的http的选项下添加server
  1. ...
  2. http {
  3. ...
  4. server {
  5. access_log /var/log/nginx/access.log; # 访问日志路径
  6. error_log /var/log/nginx/error.log; # 错误日志路径
  7. listen 9090; # 指定端口号
  8. index index.html; # 指定主页,这样可以通过端口号直接访问主页
  9. root /var/www/html/; # 目录下需要有index.html, 否则会报错 nginx 403 forbidden
  10. charset utf-8; # 指定utf8编码,避免中文乱码
  11. }
  12. server {
  13. ...
  14. # 这里是第二个server的配置
  15. ...
  16. }
  17. ...
  18. }
  19. ...

配置后重启Nginx
  1. # reloading the configuration file
  2. sudo nginx -s reload

通过浏览器访问在线文档

浏览器打开: http://192.168.200.153:9090/index.html
其中ip为nginx服务器所在服务的ip,9090为我们在nginx中配置的端口号,