- Getting Started with Ghost
- Kezz Bracey David Balderston Andy Boutte
- 225字
- 2021-08-05 17:07:05
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "For reference, you can see a sample config.js
file in the .zip
file that came with this book."
A block of code is set as follows:
server { listen 80; listen 443 ssl; server_name <your domain name>.com www.<your domain name>.com; ssl_certificate /etc/nginx/ssl/<your domain name>/<your domain name>.com.crt; ssl_certificate_key /etc/nginx/ssl/<your domain name>/<your domain name>.com.pem; location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://127.0.0.1:2368; } }
Any command-line input or output is written as follows:
cd path/to/ghost/folder mkdir temp cd temp/ wget https://ghost.org/zip/ghost-latest.zip unzip ghost-latest.zip cd .. sudo cp temp/*.md temp/*.js temp/*.json . sudo sudo rm -R core sudo cp -R temp/core . sudo cp -R temp/content/themes/casper content/themes sudo npm install --production sudo rm -R temp
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Both the settings can be accessed via the Settings tab in the top admin menu."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Windows 8實(shí)戰(zhàn)從入門(mén)到精通
- 應(yīng)對(duì)多突發(fā)事件的信息系統(tǒng)應(yīng)用技術(shù)
- 大東話安全之網(wǎng)絡(luò)病毒篇
- Web應(yīng)用開(kāi)發(fā)技術(shù)與案例教程
- 網(wǎng)絡(luò)工程設(shè)計(jì)與實(shí)施(第2版)
- 巧學(xué)巧用Dreamweaver CS6、Flash CS6、Fireworks CS6網(wǎng)站制作
- Penetration Testing with BackBox
- 中文版Dreamweaver CC基礎(chǔ)培訓(xùn)教程
- Learn Wireshark
- 思科軟件定義訪問(wèn):實(shí)現(xiàn)基于業(yè)務(wù)意圖的園區(qū)網(wǎng)絡(luò)
- 網(wǎng)絡(luò)基礎(chǔ)
- 萬(wàn)億級(jí)流量轉(zhuǎn)發(fā):BFE核心技術(shù)與實(shí)現(xiàn)
- 網(wǎng)站說(shuō)服力
- Dreamweaver CS6實(shí)例教程(第3版)
- Elasticsearch搜索引擎開(kāi)發(fā)實(shí)戰(zhàn)