This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* Time Capsule By Sam Azgor | |
* Copy and paste the following code in your theme’s functions.php file | |
* Add this to your template - <?php wp_timehop_sam(); ?> | |
* | |
*/ | |
function wp_timehop() { | |
$today = getdate(); |
Codex: http://codex.wordpress.org/Function_Reference/add_menu_page
Available Dashicons: http://melchoyce.github.io/dashicons/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit this file to introduce tasks to be run by cron. | |
# | |
# Each task to run has to be defined through a single line | |
# indicating with different fields when the task will be run | |
# and what command to run for the task | |
# | |
# To define the time you can provide concrete values for | |
# minute (m), hour (h), day of month (dom), month (mon), | |
# and day of week (dow) or use '*' in these fields (for 'any').# | |
# Notice that tasks will be started based on the cron's system |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; sudo nano /etc/php/7.2/fpm/pool.d/digitechpoint.conf | |
; Start a new pool named 'digitechpoint'. | |
; the variable $pool can be used in any directive and will be replaced by the | |
; pool name ('digitechpoint' here) | |
[digitechpoint] | |
; Per pool prefix | |
; It only applies on the following directives: | |
; - 'access.log' | |
; - 'slowlog' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
listen [::]:80; | |
root /home/digitechpoint/apps/samazgor.me/public; | |
index index.php index.html index.htm; | |
server_name samazgor.me www.samazgor.me; | |
error_page 404 /404.html; | |
error_page 500 502 503 504 /50x.html; | |
location = /50x.html { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; sudo nano /etc/php/7.4/fpm/pool.d/digitechpoint.conf | |
; Start a new pool named 'digitechpoint'. | |
; the variable $pool can be used in any directive and will be replaced by the | |
; pool name ('digitechpoint' here) | |
[digitechpoint] | |
; Per pool prefix | |
; It only applies on the following directives: | |
; - 'access.log' | |
; - 'slowlog' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable hotlinking of images with forbidden message | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{HTTP_REFERER} !^$ | |
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?seu-dominio.com.br/.*$ [NC] | |
RewriteCond %{HTTP_REFERER} !search\?q=cache [NC] | |
RewriteCond %{HTTP_REFERER} !google\. [NC] | |
RewriteCond %{HTTP_REFERER} !yahoo\. [NC] | |
RewriteCond %{HTTP_REFERER} !googleusercontent\. [NC] | |
RewriteCond %{HTTP_REFERER} !bing\. [NC] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Header set Connection keep-alive | |
ExpiresActive On | |
ExpiresByType image/jpg "access 1 year" | |
ExpiresByType image/jpeg "access 1 year" | |
ExpiresByType image/gif "access 1 year" | |
ExpiresByType image/png "access 1 year" | |
ExpiresByType image/svg+xml "access 1 month" | |
ExpiresByType text/css "access 1 month" | |
ExpiresByType application/pdf "access 1 month" |
OlderNewer