Commit 893a2b6b authored by Simon's avatar Simon

Job positions ordered by published

parent 0ea410b5
This diff is collapsed.
...@@ -182,8 +182,8 @@ services: ...@@ -182,8 +182,8 @@ services:
wp plugin install polylang --version=2.6.2 --activate-network; wp plugin install polylang --version=2.6.2 --activate-network;
# wp plugin update polylang --version=2.6.2; # wp plugin update polylang --version=2.6.2;
wp plugin install wordpress-seo --version=11.6 --activate-network; wp plugin install wordpress-seo --version=11.7 --activate-network;
# wp plugin update wordpress-seo --version=11.6; # wp plugin update wordpress-seo --version=11.7;
wp plugin update akismet --version=4.1.2; wp plugin update akismet --version=4.1.2;
wp plugin uninstall hello; wp plugin uninstall hello;
......
This diff is collapsed.
...@@ -2,17 +2,33 @@ ...@@ -2,17 +2,33 @@
# | Online Certificate Status Protocol stapling | # | Online Certificate Status Protocol stapling |
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
# OCSP is a lightweight, only one record to help clients verify the # OCSP is a lightweight, only one record to help clients verify the validity of
# validity of the server certificate. # the server certificate.
# OCSP stapling allow the server to send its cached OCSP record during # OCSP stapling allows the server to send its cached OCSP record during the TLS
# the TLS handshake, whithout the need of 3rd party OCSP responder. # handshake, without the need of 3rd party OCSP responder.
# #
# https://wiki.mozilla.org/Security/Server_Side_TLS#OCSP_Stapling # https://wiki.mozilla.org/Security/Server_Side_TLS#OCSP_Stapling
# https://tools.ietf.org/html/rfc6066#section-8 # https://tools.ietf.org/html/rfc6066#section-8
# https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling # https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling
#
# (1) Use Cloudflare 1.1.1.1 DNS resolver
# https://developers.cloudflare.com/1.1.1.1/setting-up-1.1.1.1/
#
# (2) Use Google 8.8.8.8 DNS resolver
# https://developers.google.com/speed/public-dns/docs/using
#
# (3) Use OpenDNS resolver
# https://use.opendns.com
ssl_stapling on; ssl_stapling on;
ssl_stapling_verify on; ssl_stapling_verify on;
resolver 8.8.8.8 8.8.4.4 216.146.35.35 216.146.36.36 valid=60s; resolver
# (1)
1.1.1.1 1.0.0.1 [2606:4700:4700::1111] [2606:4700:4700::1001]
# (2)
8.8.8.8 8.8.4.4 [2001:4860:4860::8888] [2001:4860:4860::8844]
# (3)
# 208.67.222.222 208.67.220.220 [2620:119:35::35] [2620:119:53::53]
valid=60s;
resolver_timeout 2s; resolver_timeout 2s;
...@@ -162,7 +162,7 @@ http { ...@@ -162,7 +162,7 @@ http {
font/woff2 "*"; font/woff2 "*";
} }
client_body_buffer_size 10M; # client_body_buffer_size 10M;
client_max_body_size 10M; client_max_body_size 10M;
# Include files in the conf.d folder. # Include files in the conf.d folder.
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
global $wpdb; global $wpdb;
$params = array( $params = array(
'orderby' => 'valid.meta_value DESC', 'orderby' => 'date DESC',
'where' => $where, 'where' => $where,
'limit' => 5 'limit' => 5
); );
......
...@@ -137,7 +137,7 @@ get_header(); ?> ...@@ -137,7 +137,7 @@ get_header(); ?>
global $wpdb; global $wpdb;
$params = array( $params = array(
'orderby' => 'valid.meta_value DESC', 'orderby' => 'date DESC',
'where' => $where, 'where' => $where,
'limit' => 20 'limit' => 20
); );
......
...@@ -131,7 +131,7 @@ get_header(); ?> ...@@ -131,7 +131,7 @@ get_header(); ?>
global $wpdb; global $wpdb;
$params = array( $params = array(
'orderby' => 'valid.meta_value DESC', 'orderby' => 'date DESC',
'where' => $where, 'where' => $where,
'limit' => 20 'limit' => 20
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment