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
#nginx config file for Nextjs App | |
#place in /etc/nginx/sites-available/name_of_config_file | |
server { | |
listen 80; | |
server_name domainname.com; | |
gzip on; | |
gzip_proxied any; | |
gzip_types application/javascript application/x-javascript text/css text/javascript; | |
gzip_comp_level 5; |
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
<script type='text/javascript'> | |
// BloggerJS v0.3.1 | |
// Copyright (c) 2017-2018 Kenny Cruz | |
// Licensed under the MIT License | |
// Configuration ----------- | |
var postsDatePrefix = false; | |
var accessOnly = false; | |
var useApiV3 = false; |
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
<b:section class='main' id='main' showaddelement='yes'> | |
<b:widget id='Blog1' locked='true' title='Blog Posts' type='Blog'/> | |
</b:section |
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
<!-- under <head> tag --> | |
<link href='http://cdn.jsdelivr.net/darfonts/0.1/dinone-dintwo-sstext-ssthree/stylesheet.css' rel='stylesheet'/> | |
<style>body{font-family: 'ge_dinar_tworegular'!important;font-size: 13px!important;font-weight: 400!important;}</style> |
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
<b:if cond='data:blog.pageType == "item"'> | |
<div class="fb-comments" expr:data-href='data:post.url' data-colorscheme="light" data-numposts="5" data-width="600"></div> | |
<b:if/> |