Chrome DevTools Shortcuts

Open panels with shortcuts in OS (Windows/Linux) Useful panels Shortcut Run Command Ctrl+Shift+P Elements (CSS) Ctrl+Shift+C Console (Javascript) Ctrl+Shift+J Your last panel (I) Ctrl+Shift+IF12 Easy way to memorize the shortcuts:– C stands for CSS.– J for JavaScript.– I designates your choice. More info from Chrome for Developers

Nginx proxy basic configuration for Wildfly/JBoss

We are going to explain how to configure a nginx proxy to redirect wildfly port 8443 to 443 and redirect requests from application context path to domain name. The following basic configuration it goes in http context and the base file without can be downloaded here. This file is created on /etc/nginx/conf.d/wildfly-basic.conf with following command […]

HTTPS Redirection

In Apache In your Apache server and go to the conf folder and take a backup of httpd.conf file. Open httpd.conf using your favourite editor. Ensure mod_rewrite.so module is loaded. LoadModule rewrite_module modules/mod_rewrite.so If you see above line is commented then uncomment it. Add the following at the end of the file. RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} Restart […]