Sample nginx vhsot config file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
server{ listen 80; server_name www.yourwebsite.com; root /path/to/your/www; index index.php; location / { try_files $uri $uri/ =404; } error_page 404 /404.html; error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { try_files $uri =404; fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; fastcgi_param APPLICATION_ENV development; #set it for environment variable fastcgi_param APPLICATION_LOGGING false; } } |
VMWare shared folder as apache vhost
Step 1. Find the apache user and group id as
1 2 |
id -u apache id -g apache |
Step 2: open vmware-tools files add apache user to the shared folder as
1 |
sudo vim /etc/init.d/vmware-tools |
Step 3: Update the following as […]
Install Redis Server in CentOS
Install necessary packages On CentOS 6:
1 |
yum install wget make gcc tcl |
On CentOS 7
1 |
yum install wget make gcc |
Install Redis 3.2 For installing Redis 3.2 you have to download the source file and compile it because Redis 3.2 is […]
Find And Remove Files With One Command in Linux/Unix
The basic find command syntax is: find dir-name criteria action dir-name : – Defines the working directory such as look into /tmp/ criteria : Use to select files such as “*.sh” action : […]