- Update CentOS with the following command
yum check-update
yum update
yum check-update
yum update
Original Resource (in Russian): http://yiiframework.ru/forum/viewtopic.php?t=22253
Important: Server SSH-Key must be made without passphrase!
You could have passphrase, then you'll need to use ssh-agent to store & run the passphrase.
server { | |
listen 80; | |
server_name example.localhost; | |
root /vagrant/frontend/www; | |
index index.php; | |
location / { | |
try_files $uri $uri/ /index.php?$args; |
##Install psycard from source
git clone [email protected]:LudovicRousseau/pyscard.git
cd pyscard
python setup.py develop
You might have to install:
This guide is adapted and updated from an online article "A step-by-step how-to guide to install, configure, and test a Linux, Apache, Informix, and PHP server" by Kellen F. Bombardier.
Original article can be accessed at: http://www.ibm.com/developerworks/data/library/techarticle/dm-0606bombardier/
##Before you start This guide assumes the use of an RPM-based 64-bit Linux system. The steps provided have been completed on Centos 7 on minimal/centos7 vagrant box. However, the overall ideas can be conveyed across any Linux distribution.
##Pre-installation steps First, you need to have the Informix Dynamic Server and the Informix Software Development Kit. If you do not have these products, you can find them on the Informix product family page.
<?xml version="1.0" encoding="utf-8"?> | |
<web-app xmlns="http://java.sun.com/xml/ns/javaee" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" | |
version="2.5"> | |
<filter> | |
<filter-name>UrlRewriteFilter</filter-name> | |
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class> | |
</filter> | |
<filter-mapping> |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
config.vm.box = "myopensoft/devbox" | |
config.vm.network "private_network", ip: "192.168.33.10" |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |