Categories
News

Losangeles.raleche.com New website listing

losangeles.raleche.com – New website directory about Los Angeles! Stay tuned new directories to be added over time

Go Visit losangeles.raleche.com Now !

Categories
Apache Hacker Web Server

Whitelist EC2 server to send email

Below find url that will allow your ec2 servers to send emails

https://console.aws.amazon.com/support/contacts?#/rdns-limits
Categories
Apache Hacker Security

Logwatch to monitor your server daily

Install logwatch

yum install logwatch

send logwatch email

logwatch --detail Low --mailto [email protected] --service http --range today

Logwatch configuration file

vim /usr/share/logwatch/default.conf/logwatch.conf

Categories
Apache Hacker Security

Install mod24_security VERY IMPORTANT

Install mod security24 very important

yum install mod24_security
Categories
Apache Hacker

Stopping “connect” attacks in apache (solution)

Then add the following right after it and restart apache to activate.

# Second, we configure the "default" Location to restrict the methods
allowed
# to stop CONNECT method attacks.
#
Order allow,deny Deny from all

I don’t like the idea of my server responding to requests for random hostnames, even if it serves local content. How can I deny these requests?

<VirtualHost *:80>
  ServerName default.only
  <Location />
    Order allow,deny
    Deny from all
  </Location>
</VirtualHost>


Categories
Technical

untar linux compressed file

tar -zxvf yourfile.tar.gz
Categories
Queues REDIS

Redis Practical commands

Redis Command Line

redis-cli -h 127.0.0.1 -p 6379

List keys

keys *

Show Value Key

mget "nameOfYourKey"
Categories
REDIS

Show all Redis keys

$ redis-cli KEYS '*'


Categories
Queues REDIS

Flush keys in Redis

redis-cli FLUSHALL
Categories
Laravel

Laravel Socialite

Laravel Socialite makes the experience painless and fast to implement. I highly recommend this package for quick development ! Here

laravel socialite raleche
laravel socialite raleche