Ubuntu14.04 LTS安装openvpn

本文的主要目标为:在墙外的服务器安装openvpn来达到访问互联网的目的,前提是你应该至少有一台墙外服务器,付费或者免费均可。

以下为正文

1、安装openvpn及证书制作工具easy-rsa

sudo apt-get install openvpn easy-rsa

为了方便起见,以下在root用户下进行,使用sudo -i来切换至root用户

mkdir /etc/openvpn/easy-rsa/
cp -r /usr/share/easy-rsa/* /etc/openvpn/easy-rsa/
cd /etc/openvpn/easy-rsa/

继续阅读“Ubuntu14.04 LTS安装openvpn”

Ubuntu下搭建WordPress

根据WordPress的官方文档,想要安装WordPress的话需要如下必要条件:

 

  • PHP version 5.2.4 or greater

  • MySQL version 5.0 or greater

We recommend Apache or Nginx as the most robust and featureful server for running WordPress, but any server that supports PHP and MySQL will do. That said, we can’t test every possible environment andeach of the hosts on our hosting page supports the above and more with no problems.

继续阅读“Ubuntu下搭建WordPress”