Japanatron Logo

I propose blocking all access to Joomla's administrator login page and front-end user login (if you don't use it) because I constantly see a-hole bots in my logs trying to hack my site.  Add these lines to the Nginx site configuration.

# DENY ACCESS TO JOOMLA ADMIN
       location ~* /administrator.* {
       deny all;
       }

# DENY ACCESS TO JOOMLA USER LOGIN
       location ~* /component/user.* {
       deny all;
       }

Now how do you access the Joomla administrator login page??  Serve your site on another port using a simpler configuration, then setup your firewall to only allow your IP to access that port.

Related Articles

JomSocial - How to Disable Cov...

I don't particularly like Facebook's cover photo feature, so I didn't particularly like it when JomSocial followed suit.  Here's how to disable JomSocial's cove...

Elastix PBX - Voicemail Disabl...

I ran a yum update process on my Elastix PBX, updating all the packages.  The update process completed without error; however, voicemail was disabled on all use...

How to Modify JomSocial to Sup...

The open source stuff that JomSocial uses to convert and render video uploads (ffmpeg) also supports audio files.  I thought it would be cool to modify JomSocia...

Joomla Running on Nginx and Ub...

What follows is an outline I compiled while building an Ubuntu server for running the Joomla CMS on the Nginx web server. NOTE: Ubuntu 14.04 LTS was used for th...