This file contains hidden or 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 unix:/var/run/nginx-backend.sock; | |
server_name example.com *.example.com; | |
root /var/www/vhosts/example.com; | |
index index.php index.html index.htm; | |
access_log /var/log/nginx/example.com.backend.access.log backend; | |
keepalive_timeout 25; | |
port_in_redirect off; |
This file contains hidden or 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; | |
server_name example.com *.example.com; | |
root /var/www/vhosts/example.com; | |
index index.html index.htm; | |
charset utf-8; | |
access_log /var/log/nginx/example.com.access.log main; | |
error_log /var/log/nginx/example.com.error.log; |
This file contains hidden or 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
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_template_directory_uri(); ?>/style.css?ver=<?php echo filemtime(get_template_directory().'/style.css'); ?>" /> | |
<?php if (is_child_theme()): ?> | |
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_directory_uri(); ?>/style.css?ver=<?php echo filemtime(get_stylesheet_directory().'/style.css') ?>" /> | |
<?php endif; ?> |
NewerOlder