Cloud computing is the on-demand availability of computer system resources, especially data storage and computing power, without direct active management by the user. Service Models IAAS Infrastructure as a Service: […]
Net Neutrality
Net neutrality prevents ISPs from slowing down internet connections with regard to content, source, and destination. It stops the idea of ISPs discriminating, internet access based on the platform, application, […]
Vagrant corrupted index file
Error Message The machine index which stores all required information about running Vagrant environments has become corrupt. This is usually caused by external tampering of the Vagrant data folder. Vagrant […]
Installing Postman on Ubuntu
(1) wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz (2) sudo tar -xzf postman.tar.gz -C /opt (3) rm postman.tar.gz (4) sudo ln -s /opt/Postman/Postman /usr/bin/postman You can install Postman using these commands: You can […]
Laravel Nginx configuration
server { listen 80; listen [::]:80; root /var/www/html/jdk/public; index index.php index.html index.htm index.nginx-debian.html; server_name example.com www.example.com; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include snippets/fastcgi-php.conf; […]