zoukankan      html  css  js  c++  java
  • nginx安装

    可以参考http://nginx.org/en/linux_packages.html#stable

    下面内容是摘抄自上链接的文章

    Pre-Built Packages for Stable version

    Alternatively, a repository configuration can be added manually without installing the nginx-release package. Create the file named /etc/yum.repos.d/nginx.repo with the following contents:

    [nginx]
    name=nginx repo
    baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
    gpgcheck=0
    enabled=1
    

    Replace “OS” with “rhel” or “centos”, depending on the distribution used, and “OSRELEASE” with “5” or “6”, for 5.x or 6.x versions, respectively.

    then run the following:

    yum install nginx
    2 、nginx安装目录说明
    /usr/sbin/nginx nginx可执行文件
    /etc/nginx/ 下面有配置文件nginx.conf,在nginx.conf又include了自定义的配置文件(在同目录的子文件夹conf.d里),如默认的为default.conf,可以修改default.conf或建立自己的conf文件。
    /usr/share/nginx/html/ 网站源码所在文件夹
    3、启动、停止或重启nginx
    sudo /etc/init.d/nginx start/stop/restart
  • 相关阅读:
    java实现同步的两种方式
    JAVA线程概念
    XML基础总结
    JAVA使用和操作properties文件
    JAVA序列化基础知识
    easyui 在编辑状态下,动态修改其他列值。
    Activiti初学问题,求解
    java web--DOM
    java web(1)
    Java WEB
  • 原文地址:https://www.cnblogs.com/zxpo/p/3796662.html
Copyright © 2011-2022 走看看