配置NFS共享 、 HTTP服務(wù)基礎(chǔ)

  1. 案例1:普通NFS共享的實(shí)現(xiàn)
  2. 案例2:獨(dú)立Web站點(diǎn)的快速部署
  3. 案例3:虛擬Web主機(jī)的部署

1 案例1:普通NFS共享的實(shí)現(xiàn)

1.1 問題

本例要求在虛擬機(jī) server0 上配置NFS服務(wù)贮预,完成以下任務(wù):

  1. 只讀的方式共享目錄 /public,只能被 example.com 域中的系統(tǒng)訪問
  2. 可讀寫共享目錄/protected蜘澜,能被 example.com 域中的系統(tǒng)訪問

然后在虛擬機(jī) desktop0 上訪問NFS共享目錄

  1. 將 server0 的 /public 掛到本地 /mnt/nfsmount
  2. 這些文件系統(tǒng)在系統(tǒng)啟動時自動掛載

1.2 方案

對于普通NFS共享來說:

  • 服務(wù)端需要運(yùn)行系統(tǒng)服務(wù) nfs-server.service
  • 客戶端不需要運(yùn)行特定的系統(tǒng)服務(wù)

配置NFS共享目錄的記錄格式:

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. 文件夾絕對路徑 客戶地址1(ro或rw等控制參數(shù)) 客戶地址2(ro或rw等控制參數(shù)) .. ..

</pre>

1.3 步驟

實(shí)現(xiàn)此案例需要按照如下步驟進(jìn)行箕戳。

步驟一:在server0上發(fā)布NFS共享目錄

1)準(zhǔn)備需要共享的文件夾

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# mkdir /public
  2. [root@server0 ~]# mkdir /protected

</pre>

2)建立NFS共享配置

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# vim /etc/exports
  2. /public 172.25.0.0/24(ro)
  3. /protected 172.25.0.0/24(rw)

</pre>

3)啟動系統(tǒng)服務(wù)nfs-server黔帕,并設(shè)置開機(jī)自啟

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# systemctl restart nfs-server
  2. [root@server0 ~]# systemctl enable nfs-server
  3. ln -s '/usr/lib/systemd/system/nfs-server.service' '/etc/systemd/system/nfs.target.wants/nfs-server.service'

</pre>

步驟二:在desktop0上掛載NFS共享目錄/public

1)創(chuàng)建掛載點(diǎn)

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# mkdir /mnt/nfsmount

</pre>

2)列出server0上提供的NFS共享資源

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# showmount -e server0.example.com
  2. Export list for server0.example.com:
  3. /protected 172.25.0.0/24
  4. /public 172.25.0.0/24

</pre>

3)配置開機(jī)掛載server0的NFS共享目錄/public

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# vim /etc/fstab
  2. .. ..
  3. server0.example.com:/public /mnt/nfsmount nfs _netdev 0 0

</pre>

4)測試掛載配置

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# mount -a
  2. [root@desktop0 ~]# df -hT /mnt/nfsmount/
  3. Filesystem Type Size Used Avail Use% Mounted on
  4. server0.example.com:/public nfs4 10G 3.2G 6.8G 32% /mnt/nfsmount

</pre>

2 案例2:獨(dú)立Web站點(diǎn)的快速部署

2.1 問題

本例要求為 http://server0.example.com 配置Web站點(diǎn)代咸,要求如下:

  1. http://classroom/pub/materials/station.html下載一個主頁文件,將其重命名為 index.html
  2. 將此文件拷貝到站點(diǎn)的 DocumentRoot 目錄下成黄,不要對文件 index.html 的內(nèi)容作任何修改
  3. 使用 elinks 或firefox 瀏覽上述Web站點(diǎn)

2.2 方案

Web網(wǎng)站服務(wù)端:軟件包httpd呐芥、系統(tǒng)服務(wù)httpd

Web網(wǎng)站瀏覽器:軟件包elinks或fireox

傳輸協(xié)議及端口:TCP 80

Web網(wǎng)站服務(wù)端配置文件:

  • /etc/httpd/conf/httpd.conf
  • /etc/httpd/conf.d/*.conf

默認(rèn)首頁文件:index.html

httpd網(wǎng)站文檔的默認(rèn)根目錄:/var/www/html

URL(Uniform Resource Locator逻杖,統(tǒng)一資源定位器)網(wǎng)址的基本組成:

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. http://服務(wù)器地址[:端口號]/目錄/文件名

</pre>

對于需要驗(yàn)證的FTP資源,還需要指定用戶名密碼信息:

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. ftp://用戶名:密碼@服務(wù)器地址[:端口號]/目錄/文件名

</pre>

2.3 步驟

實(shí)現(xiàn)此案例需要按照如下步驟進(jìn)行思瘟。

步驟一:構(gòu)建及部署網(wǎng)站服務(wù)器

1)安裝軟件包httpd

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# yum -y install httpd
  2. .. ..

</pre>

2)部署網(wǎng)頁

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# cd /var/www/html/ //進(jìn)入網(wǎng)頁目錄

  2. [root@server0 html]# wget http://classroom/pub/materials/station.html -O index.html //下載網(wǎng)頁

  3. .. ..

  4. 2016-11-26 19:33:49 (1.36 MB/s) - ‘index.html’ saved [14/14]

  5. [root@server0 html]# cat index.html //檢查網(wǎng)頁文件

  6. Default Site.

</pre>

3)啟動系統(tǒng)服務(wù)httpd荸百,并設(shè)置開機(jī)自啟

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 html]# systemctl restart httpd
  2. [root@server0 html]# systemctl enable httpd
  3. ln -s '/usr/lib/systemd/system/httpd.service' '/etc/systemd/system/multi-user.target.wants/httpd.service'

</pre>

步驟二:訪問網(wǎng)站服務(wù)器

1)使用elinks瀏覽器查看

Elinks瀏覽器可以在命令行模式顯示出網(wǎng)頁文本,經(jīng)常用來測試網(wǎng)站的可用性滨攻。

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# yum -y install elinks //安裝elinks
  2. .. ..
  3. [root@desktop0 ~]# elinks -dump http://server0.example.com/ //訪問指定網(wǎng)址
  4. Default Site.

</pre>

2)使用firefox瀏覽器查看

Firefox瀏覽器支持更多網(wǎng)頁特性够话,是訪問復(fù)雜網(wǎng)頁、網(wǎng)址的優(yōu)秀工具光绕。

在桌面終端直接運(yùn)行“firefox http://server0.examle.com/”女嘲,或者通過菜單快捷方式打開Firefox瀏覽器再輸入對應(yīng)網(wǎng)址,都可以看到目標(biāo)網(wǎng)頁(如圖-1所示)诞帐。

image

圖-1

3 案例3:虛擬Web主機(jī)的部署

3.1 問題

本例要求為server0擴(kuò)展Web站點(diǎn)欣尼,新建虛擬主機(jī) http://www0.example.com,具體要求如下:

  1. 設(shè)置 DocumentRoot 為 /var/www/virtual
  2. http://classroom/pub/materials/www.html 下載主頁文件停蕉,并重命名為 index.html
  3. 不要對文件 index.html 的內(nèi)容作任何修改愕鼓,將其放到此虛擬主機(jī)的 DocumentRoot 目錄下
  4. 確保 fleyd 用戶能在 /var/www/virtual 目錄建文件
  5. 確保站點(diǎn) http://server0.example.com 仍然可用

3.2 方案

單一網(wǎng)站平臺(比如172.25.0.11):

  • 多個域名 ---> 相同的網(wǎng)頁內(nèi)容
  • 配置文件:/etc/httpd/conf/httpd.conf
  • 網(wǎng)頁目錄定義:DocumentRoot /var/www/html

虛擬主機(jī)平臺(比如172.25.0.11):

  • 在同一套httpd平臺上跑很多個網(wǎng)站
  • 多個域名 ---> 不同的網(wǎng)頁內(nèi)容
  • 網(wǎng)頁目錄由<VirtualHost ...>區(qū)段配置定義

多個虛擬主機(jī)站點(diǎn)的典型設(shè)置(/etc/httpd/conf.d/*.conf):

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. <VirtualHost *:80>
  2. ServerName 網(wǎng)站1的FQDN
  3. DocumentRoot 網(wǎng)站1的網(wǎng)頁根目錄
  4. </VirtualHost>
  5. <VirtualHost *:80>
  6. ServerName 網(wǎng)站2的FQDN
  7. DocumentRoot 網(wǎng)站2的網(wǎng)頁根目錄
  8. </VirtualHost>
  9. .. ..

</pre>

3.3 步驟

實(shí)現(xiàn)此案例需要按照如下步驟進(jìn)行。

步驟一:部署網(wǎng)頁文檔

1)建立網(wǎng)頁目錄

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# mkdir /var/www/virtual
  2. [root@server0 ~]# useradd fleyd
  3. [root@server0 ~]# setfacl -m u:fleyd:rwx /var/www/virtual/

</pre>

2)部署網(wǎng)頁文件

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# cd /var/www/virtual/

  2. [root@server0 virtual]# wget http://classroom/pub/materials/www.html -O index.html

  3. .. ..

  4. 100%[=====================>] 14 --.-K/s in 0s

  5. 2016-11-26 20:01:14 (826 KB/s) - ‘index.html’ saved [14/14]

  6. [root@server0 virtual]# cat index.html //檢查網(wǎng)頁文件

  7. Virtual Site.

</pre>

步驟二:配置虛擬主機(jī) http://www0.example.com/

1)為新站點(diǎn)創(chuàng)建獨(dú)立的配置文件

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 virtual]# vim /etc/httpd/conf.d/01-www0.conf
  2. <VirtualHost *:80>
  3. ServerName www0.example.com
  4. DocumentRoot /var/www/virtual
  5. </VirtualHost>
  6. [root@server0 virtual]# httpd -t //確保語法檢查OK
  7. Syntax OK

</pre>

2)重啟系統(tǒng)服務(wù)httpd

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 virtual]# systemctl restart httpd

</pre>

步驟三:訪問虛擬主機(jī) http://www0.example.com/

訪問此虛擬站點(diǎn)慧起,可以看到預(yù)期的網(wǎng)頁內(nèi)容:

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# elinks -dump http://www0.example.com/
  2. Virtual Site.

</pre>

步驟四:完善原始站點(diǎn) http://server0.example.com/

需要注意的是菇晃,原始的獨(dú)立站點(diǎn)可能出現(xiàn)異常,訪問時并不是原始的網(wǎng)頁:

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# elinks -dump http://server0.example.com/
  2. Virtual Site.

</pre>

原因是一旦啟用虛擬站點(diǎn)機(jī)制以后:

  • 外部的 DocumentRoot完慧、ServerName 會被忽略
  • 第1個虛擬站點(diǎn)被視為默認(rèn)站點(diǎn)谋旦,若客戶機(jī)請求的URL不屬于任何已知站點(diǎn),則由第1個站點(diǎn)響應(yīng)

若要解決此異常屈尼,需要將原始站點(diǎn)轉(zhuǎn)換為第一個虛擬主機(jī)册着,啟用順序的設(shè)置可以通過文件名開頭的數(shù)字來實(shí)現(xiàn)。

1)為原始站點(diǎn)建立虛擬主機(jī)配置

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 ~]# vim /etc/httpd/conf.d/00-default.conf
  2. <VirtualHost *:80>
  3. ServerName server0.example.com
  4. DocumentRoot /var/www/html
  5. </VirtualHost>

</pre>

2)重啟系統(tǒng)服務(wù)httpd

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@server0 virtual]# systemctl restart httpd

</pre>

3)訪問兩個虛擬站點(diǎn)脾歧,確保各自的網(wǎng)頁內(nèi)容正確

<pre class="code sh_javascript snippet-formatted sh_sourceCode" style="font-size: 14px; color: rgb(0, 0, 0); margin-left: 40px; background-color: rgb(238, 238, 238); font-weight: normal; font-style: normal; padding: 1em; line-height: 1.8em; overflow: auto; position: relative; border-radius: 15px; box-shadow: rgb(0, 0, 0) 2px 2px 5px;">

  1. [root@desktop0 ~]# elinks -dump http://server0.example.com/
  2. Default Site.
  3. [root@desktop0 ~]# elinks -dump http://www0.example.com/
  4. Virtual Site.

</pre>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末甲捏,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子鞭执,更是在濱河造成了極大的恐慌司顿,老刑警劉巖,帶你破解...
    沈念sama閱讀 219,589評論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件兄纺,死亡現(xiàn)場離奇詭異大溜,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)估脆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,615評論 3 396
  • 文/潘曉璐 我一進(jìn)店門钦奋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事付材‰希” “怎么了?”我有些...
    開封第一講書人閱讀 165,933評論 0 356
  • 文/不壞的土叔 我叫張陵厌衔,是天一觀的道長璧帝。 經(jīng)常有香客問我,道長富寿,這世上最難降的妖魔是什么睬隶? 我笑而不...
    開封第一講書人閱讀 58,976評論 1 295
  • 正文 為了忘掉前任,我火速辦了婚禮作喘,結(jié)果婚禮上理疙,老公的妹妹穿的比我還像新娘。我一直安慰自己泞坦,他們只是感情好窖贤,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,999評論 6 393
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著贰锁,像睡著了一般赃梧。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上豌熄,一...
    開封第一講書人閱讀 51,775評論 1 307
  • 那天授嘀,我揣著相機(jī)與錄音,去河邊找鬼锣险。 笑死蹄皱,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的芯肤。 我是一名探鬼主播巷折,決...
    沈念sama閱讀 40,474評論 3 420
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼崖咨!你這毒婦竟也來了锻拘?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,359評論 0 276
  • 序言:老撾萬榮一對情侶失蹤击蹲,失蹤者是張志新(化名)和其女友劉穎署拟,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體歌豺,經(jīng)...
    沈念sama閱讀 45,854評論 1 317
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡推穷,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,007評論 3 338
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了类咧。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片馒铃。...
    茶點(diǎn)故事閱讀 40,146評論 1 351
  • 序言:一個原本活蹦亂跳的男人離奇死亡谴咸,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出骗露,到底是詐尸還是另有隱情,我是刑警寧澤血巍,帶...
    沈念sama閱讀 35,826評論 5 346
  • 正文 年R本政府宣布萧锉,位于F島的核電站,受9級特大地震影響述寡,放射性物質(zhì)發(fā)生泄漏柿隙。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,484評論 3 331
  • 文/蒙蒙 一鲫凶、第九天 我趴在偏房一處隱蔽的房頂上張望禀崖。 院中可真熱鬧,春花似錦螟炫、人聲如沸波附。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,029評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽掸屡。三九已至,卻和暖如春然评,著一層夾襖步出監(jiān)牢的瞬間仅财,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,153評論 1 272
  • 我被黑心中介騙來泰國打工碗淌, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留盏求,地道東北人。 一個月前我還...
    沈念sama閱讀 48,420評論 3 373
  • 正文 我出身青樓亿眠,卻偏偏與公主長得像碎罚,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子缕探,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,107評論 2 356

推薦閱讀更多精彩內(nèi)容