cesium Nginx 環境搭建

2022-04-02 04:22:25 字數 1457 閱讀 5563

因為專案的需求,需要用到cesium來實現地圖資訊。官網及很多部落格都是用nodejs實現的,我對nodejs不熟,折騰了半天也沒搞定,所以就用nginx作為web伺服器呢,下面是簡單的乙個搭建過程。

一、安裝nginx

環境:centos 6.5。

3、解壓原始碼包:tar xvf nginx-1.11.3.tar.gz

4、進入目錄:cd nginx-1.11.3 

5、檢測安裝環境:./configure --prefix=/usr/local/nginx

6、編譯:make

7、安裝:make install

8、啟動服務:cd /usr/local/nginx/sbin  ./nginx

9、訪問:

出現nginx首頁,證明安裝成功。

二、cesium例子

2、加壓到nginx目錄:uzip -d /usr/local/nginx/html/ cesium-1.53.zip

3、新建examples資料夾:cd /usr/local/nginx/ mkdir examples

4、建立hello.html:cd examples vim hello.html,新增以下內容:

5、訪問:examples/hello.html

會看到乙個地球,over~

LAMP環境搭建 php環境搭建

yum groupinstall development tools y yum groupinstall desktop platform development y yum install cmake pcre devel ncurses devel openssl devel libcurl ...

環境搭建 二 Python環境搭建

工欲善其事,必先利其器 要想玩轉python,我們首先需要搭建一套可使用且方便的環境。對於初學者,笨飯糰建議使用 anaconda anaconda 簡介anaconda是python的乙個科學計算發行版,內建了數百個python經常會使用的庫,包括做機器學習或資料探勘的庫。anaconda提供了乙...

環境 lamp環境搭建

以下命令全部使用root執行,如果不用root記得sudo apt update 更新一下可用軟體包列表 apt upgrade 更新已安裝的軟體包 apt install apache2 安裝apache2 systemctl start apache2 啟動apache apt install ...