intall nginx in Ubuntu from Sources

本文详细介绍了在Ubuntu环境下从源码编译安装Nginx的过程,包括搭建编译环境、安装依赖库(如openssl、pcre、zlib)、配置编译选项以及解决权限问题等关键步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. ububtu平台编译环境

apt-get install build-essential
apt-get install libtool

 

2.  

openssl:
    tar -xzvf openssl-1.0.1s.tar.gz
    cd openssl-1.0.1s
    ./config
	make 
	make install
    
pcre:
    tar -xzvf pcre-8.38.tar.gz
    cd pcre-8.38
    ./configure  
	make 
	make install
    
zlib:
    tar -xzvf zlib-1.2.8.tar.gz
    cd zlib-1.2.8
    ./configure  
	make 
	make install  

  

3.

 

 4.

./configure --prefix=/home/spotlightx/nginx/nginx --sbin-path=bin --conf-path=conf/nginx.conf --pid-path=nginx.pid --with-http_ssl_module --with-pcre=../pcre-8.38 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-1.0.1s --with-http_stub_status_module 


make
make install

 5. 

/usr/local/nginx

 

 6. 403

2016/09/30 13:26:54 [error] 8416#0: *1 "/home/spotlightx/nginx/nginx/html/index.html" is forbidden (13: Permission denied), client: 192.168.2.170, server: localhost, request: "GET / HTTP/1.1", host: "192.168.2.73"

Remove note about user nobody in nginx.conf;
Change to --> 
user  root;
worker_processes  1;

 

 

     

 

  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值