解决Nginx跨域问题 跨域访问错误提示The 'Access-Control-Allow-Origin' header contains the invalid value '*.phpwebhome.com'. Origin 'http://127.0.0.1' is therefore not allowed acc... CENTOS, PHP 2019/01/18 围观:2381人 阅读全文
CENTOS6.5 Nginx 安装HTTPS服务 一、安装SSL服务 yum -y install openssl openssl-devel mkdir /etc/nginx/ssl cd /etc/nginx/ssl openssl genrsa -des3 -out phpwebhome.key 1024 openssl rsa -in p... CENTOS, LINUX, PHP 2017/04/30 围观:1950人 阅读全文
Nginx+php5.3防止跨目录访问 Nginx各虚拟站点的配置文件中加入 /etc/nginx/conf.d/站点配置文件.conf 加入此内容fastcgi_param PHP_VALUE "open_basedir=$document_root:/tmp/"; location ~ \.php$ { root /home/www... CENTOS 2016/05/18 围观:2327人 阅读全文
CentOS6.5服务器搭建Nginx+Php5.3+Mysql5.1+phpMyAdmin环境 修改主机名 编辑/etc/sysconfig/network文件 nano /etc/sysconfig/network HOSTNAME=主机名 编辑/etc/hosts文件添加一条公网IP,不添加hostname -f会报unknown host的错误 nano /etc/hosts 公网IP ... CENTOS 2015/12/29 围观:2411人 阅读全文