Skip to content

Instantly share code, notes, and snippets.

@vilkoz
Last active March 27, 2024 18:18
Show Gist options
  • Star 37 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save vilkoz/73588f8a7b9122a93c369502d61fd922 to your computer and use it in GitHub Desktop.
Save vilkoz/73588f8a7b9122a93c369502d61fd922 to your computer and use it in GitHub Desktop.
setup http server on android with termux

Setting up http server on android with termux

Setting SSH server

To be able to make all procedures without pain you should have physical keyboard or just install ssh server and connect to your device shell from computer.

Folow this guide to setup ssh server.

Installing needed stuff

As bunch of utilites that you can expect in general linux distro is not preinstalled with termux you need to do following:

Update packages

pkg update
pkg upgrade

And install following (that will take ~250Mb):

pkg install autoconf automake bison bzip2 clang cmake coreutils diffutils flex gawk git grep gzip libtool make patch perl sed silversearcher-ag tar

Installing and configuring apache2

In this and further steps you will need to acces the /etc folder, but in termux it is hidden in /data/data/com.termux/files/usr/etc/, so I suggest you to make link.

ln -s /data/data/com.termux/files/usr/etc/ ~/etc

Install is a simple part

pkg install apache2

You can configure it if you need in ~/etc/apache2/httpd.conf.

Now you can run apache2 server by simple httpd (by default it will run on 127.0.0.1:8080).

Installing php

pkg install php php-apache

According to archwiki page libphp7.so included with php-apache will only work with mod_mpm_prefork.

  • In ~/etc/apache2/httpd.conf comment following line:
#LoadModule mpm_worker_module libexec/apache2/mod_mpm_worker.so
  • Add following line in the start of section with LoadModule instructions
LoadModule mpm_prefork_module libexec/apache2/mod_mpm_prefork.so

To enable PHP, add these lines to ~/etc/apache2/httpd.conf:

  • Place this at the end of the LoadModule list:
LoadModule php7_module libexec/apache2/libphp7.so
AddHandler php7-script .php
  • Place this at the end of the Include list (this will be at the end of file):
Include etc/apache2/extra/php7_module.conf

That file doesn't exist yet, so just create empty file, to load apache2 properly touch ~/etc/apache2/extra/php7_module.conf

To test if php works:

  • Create index.php file with arbitrary content
echo "<?php phpinfo();?>" > ~/../usr/share/apache2/default-site/htdocs/index.php
  • Restart apache2 server
killall httpd; httpd
  • Verify PHP output (you will need to install curl, if you haven't already)
curl 127.0.0.1:8080/index.php
@motebaya
Copy link

motebaya commented Jul 27, 2022

nice sir, but where i can write .htaccess file for setup every my site folder? . bcause i only find one configuration file on dir

/data/data/com.termux/files/usr/etc/apache2/httpd.conf

i try write a .htaccess file and save it to this.

/data/data/com.termux/files/usr/share/apache2/default-site/htdocs/.htaccess

but it's not working.
thanks!

@CelestialReaver
Copy link

CelestialReaver commented Aug 25, 2022

Do this for the install:

pkg install php7-apache

That will install php7 and modules for Apache.

Besides that, instructions work for me.

@IPTRAIN
Copy link

IPTRAIN commented Feb 13, 2023

~ $ pkg install php7-apache
Checking availability of current mirror:
[*] https://mirror.fcix.net/termux/termux-main: ok
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package php7-apache

:-( 1:

Many thanx to [redfox805] php (instead php7) works!

@BlockSats
Copy link

Hello,
I installed Termux on a tablet because I'm taking a course on Linux system administration at Open classroom. I wanted to have a terminal to follow this course.
The problem I encountered was the following errors:

$ touch ~/etc/apache2/extra/php7_module.conf
$ echo "<?php phpinfo();?>" > ~/../usr/share/apache2/default-site/htdocs/index.php
$ killall httpd; httpd
httpd: no process found
httpd: Syntax error on line 66 of /data/data/com.termux/files/usr/etc/apache2/httpd.conf: Cannot load libexec/apache2/libphp7.so into server: dlopen failed: library "/data/data/com.termux/files/usr/libexec/apache2/libphp7.so" not found
$ curl 127.0.0.1:8080/index.php
curl: (7) Failed to connect to 127.0.0.1 port 8080 after 3 ms: Couldn't connect to server

@BlockSats
Copy link

Screenshot_2023-12-12-12-13-58-571_com termux-edit

@BlockSats
Copy link

BlockSats commented Dec 12, 2023

I didn't put it at the end, does it really matter?

Screenshot_2023-12-12-12-16-00-897_com termux-edit

@BlockSats
Copy link

Normally I think I've done everything correctly

@BlockSats
Copy link

BlockSats commented Dec 12, 2023

I made this change :

LoadModule php7_module libexec/apache2/libphp7.so

AddHandler php7-script.php
To

LoadModule php_module libexec/apache2/libphp.so

AddHandler php-script.php

And now I have :
$ echo "<?php phpinfo();?>" > ~/../usr/share/apache2/default-site/htdocs/index.php
`$ killall httpd; httpd`

httpd: no process found
AH00534: httpd: Configuration error: No MPM loaded.

@vikramisdev
Copy link

vikramisdev commented Feb 13, 2024

Hellooo, i just follow exactly as what this instruction said and unfortunately there is some few errors and i just fix it. I ask permission to give the solution through this comment 🙏

First, change

LoadModule php7_module libexec/apache2/libphp7.so

AddHandler php7-script.php

To

LoadModule php_module libexec/apache2/libphp.so

AddHandler php-script.php

Second, change

etc/apache2/extra/php7_module.conf

To

etc/apache2/extra/php_module.conf

I did this because libphp7.so is not existed and i try with existing file libphp.so

it worked, but it shows the php content in plain text format.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment