zoukankan      html  css  js  c++  java
  • Linux之源码安装nginx,并按照作业一描述的那样去测试使用

    作业五:源码安装nginx,并按照作业一描述的那样去测试使用

    [root@localhost nginx]# yum install gcc-* glibc-* openssl openssl-devel pcre pcre-devel zlib zlib-devel -y

    [root@localhost nginx]# wget -q http://nginx.org/download/nginx-1.10.3.tar.gz

    [root@localhost nginx]# ls nginx-1.10.3.tar.gz

    nginx-1.10.3.tar.gz

    [root@localhost nginx]# tar -xf nginx-1.10.3.tar.gz

    [root@localhost nginx]# cd nginx-1.10.3/

    [root@localhost nginx]# ./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module

    [root@localhost nginx]# make && make install

    # 配置nginx.conf

    [root@localhost nginx]# cat /usr/local/nginx/nginx.conf|egrep -v "^$|^#|#"

    worker_processes  1;

    events {

        worker_connections  1024;

    }

    http {

        include       mime.types;

        default_type  application/octet-stream;

        sendfile        on;

        keepalive_timeout  65;

        server {

            listen       80;

            server_name  localhost;

            location / {

                root   /data/www/html;

                index  index.html index.htm;

            }

            error_page   500 502 503 504  /50x.html;

            location = /50x.html {

                root   html;

            }

        }

    }

  • 相关阅读:
    在Js或者cess后加版本号 防止浏览器缓存
    svn操作
    Hash表
    网站js埋点
    c#优秀文章
    CentOS修改默认yum源为国内yum镜像源
    mysql开启远程连接
    安装jdk环境
    Eclipse的一下设置
    好用的在线HTML、CSS工具
  • 原文地址:https://www.cnblogs.com/asaka/p/6592443.html
Copyright © 2011-2022 走看看