0

I'm trying to install Tengine which is based off of Nginx from their Github page:

The page says, "To install Tengine, just follow these three steps:

$ ./configure
$ make
# make install

Can someone tell me the actual first step on how to download Tengine to my server so I can install it?

I'll be using Amazon's Linux AMI.

Thank you so much! - Jennifer

WonderWorker
  • 8,539
  • 4
  • 63
  • 74
user1446650
  • 1,197
  • 6
  • 15
  • 24

2 Answers2

2

To get the latest code from github just execute

git clone https://github.com/alibaba/tengine.git

After that change to directory tengine/

cd tengine/

and start

./configure && make && make install
deagh
  • 2,647
  • 1
  • 30
  • 29
1

To install you can use:

wget -c http://tengine.taobao.org/download/tengine.tar.gz

Then, access the folder to which you downloaded (/usr/local/nginx), and find the configure file and excecute it:

./configure

After that you can compile it :)

make

Also, you can check more documentation here: http://tengine.taobao.org/documentation.html

Hope it helps! :)

MPrazz
  • 569
  • 4
  • 3