CentOS configuration nginx180
CentOS配置nginx1.8.0
- 环境准备
<code>yum <span>-y</span> install gcc gcc<span>-c</span><span>++</span> autoconf automake make yum <span>-y</span> install zlib zlib<span>-devel</span> openssl openssl<span>--</span>devel pcre pcre<span>-devel</span></code>
- 下载 nginx 、解压、编译并安装
<code>wget http://nginx<span>.org</span>/download/nginx-<span>1.8</span><span>.0</span><span>.tar</span><span>.gz</span>tar zxvf nginx-<span>1.8</span><span>.0</span><span>.tar</span><span>.gz</span> cd nginx-<span>1.8</span><span>.0</span> ./configure make && make install</code>
- 启动nginx
<code>/usr/<span>local</span>/nginx/sbin/nginx</code>
此时,可以通过浏览器访问本机ip,会出现如下字段:
- 开机启动nginx
首先,在linux系统的/etc/init.d/目录下创建nginx文件,使用如下命令:
vi /etc/init.d/nginx
在脚本中添加如下命令:
<code>********************************************************************************************************************************* <span>#!/bin/bash</span><span># nginx Startup script for the Nginx HTTP Server</span><span># it is v.0.0.2 version.</span><span># chkconfig: - 85 15</span><span># description: Nginx is a high-performance web and proxy server.</span><span># It has a lot of features, but it's not for everyone.</span><span># processname: nginx</span><span># pidfile: /var/run/nginx.pid</span><span># config: /usr/local/nginx/conf/nginx.conf</span> nginxd=/usr/local/nginx/sbin/nginx nginx_c/local/nginx/conf/nginx.conf nginx_pid=/var/run/nginx.pid RETVAL=<span>0</span> prog=<span>"nginx"</span><span># Source function library.</span> . /etc/rc.d/init.d/functions <span># Source networking configuration.</span> . /etc/sysconfig/network <span># Check that networking is up.</span> [ <span>${NETWORKING}</span> = <span>"no"</span> ] && <span>exit</span><span>0</span> [ -x <span>$nginxd</span> ] || <span>exit</span><span>0</span><span># Start nginx daemons functions.</span><span><span>start</span></span>() { <span>if</span> [ <span>-e</span><span>$nginx_pid</span> ];<span>then</span><span>echo</span><span>"nginx already running...."</span><span>exit</span><span>1</span><span>fi</span><span>echo</span> -n $<span>"Starting <span>$prog</span>: "</span> daemon <span>$nginxd</span> -c <span>${nginx_config}</span> RETVAL=$? <span>echo</span> [ <span>$RETVAL</span> = <span>0</span> ] && touch /var/lock/subsys/nginx <span>return</span><span>$RETVAL</span> } <span># Stop nginx daemons functions.</span><span><span>stop</span></span>() { <span>echo</span> -n $<span>"Stopping <span>$prog</span>: "</span> killproc <span>$nginxd</span> RETVAL=$? <span>echo</span> [ <span>$RETVAL</span> = <span>0</span> ] && rm <span>-f</span> /var/lock/subsys/nginx /var/run/nginx.pid } <span># reload nginx service functions.</span><span><span>reload</span></span>() { <span>echo</span> -n $<span>"Reloading <span>$prog</span>: "</span><span>#kill -HUP `cat ${nginx_pid}`</span> killproc <span>$nginxd</span> -HUP RETVAL=$? <span>echo</span> } <span># See how we were called.</span><span>case</span><span>"<span>$1</span>"</span><span>in</span> start) start ;; stop) stop ;; reload) reload ;; restart) stop start ;; status) status <span>$prog</span> RETVAL=$? ;; *) <span>echo</span> $<span>"Usage: <span>$prog</span> {start|stop|restart|reload|status|help}"</span><span>exit</span><span>1</span><span>esac</span><span>exit</span><span>$RETVAL</span>*********************************************************************************************************************************</code>
其中以下代码根据自己系统的位置修改
<code>nginxd=<span>/usr/</span>local/nginx/sbin/nginx nginx_c>/usr/local/nginx/conf/nginx.conf nginx_pid=<span>/var/</span>run/nginx.pid</code>
接着,设置文件的访问权限:
chmod a+x /etc/init.d/nginx (a+x参数表示 ==> all user can execute 所有用户可执行)
最后将ngix加入到rc.local文件中,这样开机的时候nginx就默认启动了
vi /etc/rc.local
添加
/etc/init.d/nginx start
保存并退出
下次重启就会生效,实现nginx的自启动。
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了CentOS配置nginx180,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



To allow the Tomcat server to access the external network, you need to: modify the Tomcat configuration file to allow external connections. Add a firewall rule to allow access to the Tomcat server port. Create a DNS record pointing the domain name to the Tomcat server public IP. Optional: Use a reverse proxy to improve security and performance. Optional: Set up HTTPS for increased security.

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

To solve the "Welcome to nginx!" error, you need to check the virtual host configuration, enable the virtual host, reload Nginx, if the virtual host configuration file cannot be found, create a default page and reload Nginx, then the error message will disappear and the website will be normal show.

There are five methods for container communication in the Docker environment: shared network, Docker Compose, network proxy, shared volume, and message queue. Depending on your isolation and security needs, choose the most appropriate communication method, such as leveraging Docker Compose to simplify connections or using a network proxy to increase isolation.

Server deployment steps for a Node.js project: Prepare the deployment environment: obtain server access, install Node.js, set up a Git repository. Build the application: Use npm run build to generate deployable code and dependencies. Upload code to the server: via Git or File Transfer Protocol. Install dependencies: SSH into the server and use npm install to install application dependencies. Start the application: Use a command such as node index.js to start the application, or use a process manager such as pm2. Configure a reverse proxy (optional): Use a reverse proxy such as Nginx or Apache to route traffic to your application

Converting an HTML file to a URL requires a web server, which involves the following steps: Obtain a web server. Set up a web server. Upload HTML file. Create a domain name. Route the request.

Troubleshooting steps for failed phpMyAdmin installation: Check system requirements (PHP version, MySQL version, web server); enable PHP extensions (mysqli, pdo_mysql, mbstring, token_get_all); check configuration file settings (host, port, username, password); Check file permissions (directory ownership, file permissions); check firewall settings (whitelist web server ports); view error logs (/var/log/apache2/error.log or /var/log/nginx/error.log); seek Technical support (phpMyAdmin

The most commonly used instructions in Dockerfile are: FROM: Create a new image or derive a new image RUN: Execute commands (install software, configure the system) COPY: Copy local files to the image ADD: Similar to COPY, it can automatically decompress tar archives or obtain URL files CMD: Specify the command when the container starts EXPOSE: Declare the container listening port (but not public) ENV: Set the environment variable VOLUME: Mount the host directory or anonymous volume WORKDIR: Set the working directory in the container ENTRYPOINT: Specify what to execute when the container starts Executable file (similar to CMD, but cannot be overwritten)
