时间:2020-02-15来源:系统城作者:电脑系统城
title: "Lnmp + Https"
date: 2019-08-28T16:18:20+08:00
draft: true
---
注:我的linux的ip地址为192.168.0.104
wget http://soft.vpser.net/lnmp/lnmp1.6-full.tar.gz
tar -zxvf lnmp1.6-full.tar.gz
cd lnm1.6-full
./install.sh lnmp
<? php
phpinfo();
?>
mkdir /usr/local/nginx/conf/cert
cd /usr/local/nginx/conf/cert
openssl genrsa -des3 -out server.key 1024
openssl req -new -key server.key -out server.csr
openssl rsa -in server.key -out server_nopass.key
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
listen 80;
root /home/wwwroot/default
server_name _;
index index.html index.php;
listen 443 ssl;
# ssl on;
ssl_certificate /usr/local/nginx/conf/cert/server.crt;
ssl_certificate_key /usr/local/nginx/conf/cert/server_nopass.key;
#error_page 403 http://www.abc.com/;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
yum install openssl mod_nss crypto-utils
Listen 443
VirtualHost _default_:443
NSSCertificateDatabase /etc/httpd/alias
NSSPassPhraseDialog file:/etc/httpd/nss-db-password.conf
internal:123456
apache -M | grep nss
certutil -W -d /etc/httpd/alias
genkey --nss --days 365 box1
certutil –L –d /etc/httpd/alias
注:若无法成功则reboot虚拟机
https://wp.xz.cn/
https://github.com/purple910/Linux/releases
unzip Discuz_X3.2_SC_UTF8.zip
unzip wordpress-5.3.2.zip
cp -fr upload /home/wwwroot/default
cp -fr wordpress /home/wwwroot/default
chmod -Rf 777 /home/wwwroot/default/upload/config
chmod -Rf 777 /home/wwwroot/default/upload/data
chmod -Rf 777 /home/wwwroot/default/upload/uc_client
chmod -Rf 777 /home/wwwroot/default/upload/uc_server
2024-07-18
Centos 7 二进制安装配置 MariaDB数据库2024-07-18
Centos7默认firewalld防火墙使用命令大全2024-07-07
四种执行python系统命令的方法常用权限linux系统内有档案有三种身份 u:拥有者 g:群组 o:其他人这些身份对于文档常用的有下面权限:r:读权限,用户可以读取文档的内容,如用cat,more查看w:写权限,用户可以编辑文档x...
2024-07-07
然而,如果我们遵循通常的 WordPress 最佳实践,这些安全问题可以避免。在本篇中,我们会向你展示如何使用 WPSeku,一个 Linux 中的 WordPress 漏洞扫描器,它可以被用来找出你安装...
2024-07-03