I hereby claim:
- I am bajpangosh on github.
- I am bajpangosh (https://keybase.io/bajpangosh) on keybase.
- I have a public key ASCQrbxcN1Zg4c_dRFqTO7wunY82OaU5e0eK8qFpzUc06Ao
To claim this, I am signing this object:
| sudo apt-get install php-pear | |
| sudo pear install mail | |
| sudo pear install Net_SMTP | |
| sudo pear install Auth_SASL | |
| sudo pear install mail_mime |
| # HTTP Server | |
| server { | |
| listen 80; | |
| server_name yourwebsitename.com www.yourwebsitename.com; | |
| rewrite ^ https://$server_name$request_uri permanent; | |
| } | |
| # HTTPS Server | |
| server { | |
| listen 443; |
| user www-data; | |
| worker_processes auto; | |
| pid /run/nginx.pid; | |
| worker_rlimit_nofile 100000; | |
| error_log /var/log/nginx/error.log crit; | |
| events { | |
| worker_connections 4000; |
| On Ubuntu/Debian distros, you can easily change the timezone by running the command : | |
| sudo dpkg-reconfigure tzdata | |
| You will be prompt with a list of timezones that you can select from. |
| https://www.google.com/adsense/app?hl=en&noaccount=false#main/upgrade |
| server { | |
| listen 443 ssl http2; | |
| listen [::]:443 ssl http2; | |
| root /var/www/example.com; | |
| index index.html index.htm index.php; | |
| server_name example.com www.example.com; | |
| location / { | |
| #try_files $uri $uri/ =404; | |
| try_files $uri $uri/ /index.php?q=$uri&$args; | |
| } |
| The following PHP modules which can come in handy in case you are planning to install WordPress or other CMS. | |
| sudo apt-get install -y php7.0-tidy php7.0 php7.0-fpm php7.0-mysql php-curl php-gd php-mcrypt php-pear php7.0-mbstring php-memcached php7.0-gmp php-zip |
| apt-get -y install php7.0-fpm php7.0-curl php7.0-gd php7.0-imap php7.0-mcrypt php7.0-readline php7.0-common php7.0-recode php7.0-mysql php7.0-cli php7.0-curl php7.0-mbstring php7.0-bcmath php7.0-mysql php7.0-opcache php7.0-zip php7.0-xml php-memcached php-imagick php-memcache memcached graphviz php-pear php-xdebug php-msgpack php7.0-soap |
I hereby claim:
To claim this, I am signing this object:
| # START Nginx Rewrites for Rank Math Sitemaps | |
| rewrite ^/sitemap_index.xml$ /index.php?sitemap=1 last; | |
| rewrite ^/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?sitemap=$1&sitemap_n=$2 last; | |
| # END Nginx Rewrites for Rank Math Sitemaps |