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
@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