sudo apt-get install openvpn
sudo cp -r /usr/share/doc/openvpn/examples/easy-rsa/2.0 /etc/openvpn/easy-rsa2
cd /etc/openvpn/easy-rsa2
| I managed to make Codeiniter work with HHVM, using | |
| nginx as a proxy. My problem was that hhvm has problems | |
| with path_info, so I was not able to run /index.php/controller/action or | |
| /controller/action/params -> /index.php/controller/action.params. | |
| I used nginx as a proxy to hhvm. I changed the way codeigniter process | |
| the url. Steps bellow: | |
| Cleaned my HHVM .hdf file: | |
| Server { |
| #!/bin/sh | |
| MONGODB_SHELL='mongo' | |
| DUMP_UTILITY='mongodump' | |
| #SET the bd name which one you want to backup | |
| DB_NAME='' | |
| #SET server path where you want to save the file | |
| CLOUD_PATH='' |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |