Linux基础知识

第四章:Web Server

2019-04-04  本文已影响0人  fxqp1043

Apache

Apache基本操作

注意防火墙(firewalld)

(操作演示:)

捕获.PNG

(访问服务器80端口)

80_test.PNG

Apache的虚拟主机配置和伪静态操作

虚拟主机配置
cd /etc/httpd/conf/httpd.conf
vim httpd.conf

# virtual host being defined.
#
<VirtualHost *:80>
        ServerName www.fxqp1202.com
        DocumentRoot /data/www
        <Directory>
                Options Indexes FollowSymLinks
                AllowOverride none
                Require all granted
        </Directory>
</VirtualHost>
#
(如果是公网,需要将自己购买的域名先解析到自己的服务器,这样设置一下字段是才会有用,否则公网DNS查询时,查询不到ip。)
39.98.164.240 www.fxqp1202.com
39.98.164.240 www.fxqp1202.xin
(通过域名来区分不同的虚机)

(阿里云解析DNS需要实名认证,否则会产生异常。)

临时设置强制和宽松模式( SELinux)
setenforce 1(强制模式)
setenforce 0(宽松模式)
直接SELinux设置
vim /etc/selinux/config

SELINUX=disabled
伪静态操作

(比如php写的文件,访问的时候应该是php结尾,但是,使用伪静态,可以以html结尾,有利于SEO优化。)

cd /etc/httpd/modules

与伪静态相关的module文件:mod_rewrite.so
vim /etc/httpd/conf/httpd.conf

/LoadModule(查找到相应的位置)

# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule rewrite_module modules/mod_rewrite.so
<VirtualHost *:80>
        ServerName www.fxqp1202.com
        DocumentRoot /data/www
        <Directory>
                Options Indexes FollowSymLinks
                AllowOverride none
                Require all granted
                <IfModule mod_rewrite.c>
                    RewriteEngine  on
                    RewrireRule ^(.*).htmp$ index.html
                <IfModule>
        </Directory>
</VirtualHost>

Nginx


nginx的基本操作

service nginx start

[root@fxqp1202 ~]# service nginx start
Redirecting to /bin/systemctl start nginx.service
[root@fxqp1202 ~]# ps -ef | grep nginx
root      3402     1  0 21:19 ?        00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx     3403  3402  0 21:19 ?        00:00:00 nginx: worker process
root      3405  3232  0 21:19 pts/0    00:00:00 grep --color=auto nginx
[root@fxqp1202 ~]# 
启动.PNG
service nginx reload
[root@fxqp1202 ~] cat /etc/nginx/conf.d/default.conf
server {
    listen       80;
    server_name  localhost;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

虚拟主机配置

server {
    listen       80;
    # listen 8000;(可以监听多个端口)
    server_name  www.fxqp1202.com;
    # server_name  www.fxqp1202.com www.imooc.test;(多域名)
    # 域名需要设置DNS解析,(Host文件)
    location / {
        root   /data/www;
        index  index.html index.htm;
    }
}

Nginx伪静态的实现

上一篇 下一篇

猜你喜欢

热点阅读