Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Oct 26, 2025. It is now read-only.
/ssh-phpPublic archive

The ridiculously simple starting point for building PHP SSH apps! 🔥

NotificationsYou must be signed in to change notification settings

Sammyjo20/ssh-php

Repository files navigation

🤫SSH PHP !

The ridiculously simple starting point for building PHP SSH apps! 🔥

Screenshot 2024-07-26 at 18 09 49

What the shell?!

I know right? I've just runssh localhost and I've got a full PHP application running in my terminal?! What! Me too. When I first sawJoe Tannenbaum's Tweet where he showed off his awesomessh cli.lab.joe.codes I thought to myself, I had to get this working myself. I have a secret project that I'm currently working on but during my research, I managed to adapt his guide for gettingcharmbracelet/wish running with PHP to work with Docker!

This is project is mainly for buildingTUIs however it can run any PHP script so you can build cool forms, resumes or anything you desire!

Why Docker?

Well, messing around with SSH is not something I want to do to my servers. Additionally, if I'm going to have the publicSSH into my server I want to make sure it's ring-fenced. With a Docker container, it's even more ring-fenced then just SSHing directly into the server.

Requirements

  • PHP 8.3 (Installed locally)
  • Docker

This project is in early access, and I'm quite new to Docker so please consider contributing if you think this could be improved! Please share your thoughts in the issues/discussions. Thank you!

Installation

To get started, run the following Composercreate-project command. Make sure to rename thessh-app-name to the name of your project.

composer create-project sammyjo20/ssh-php ssh-app-name

After the command has been run, enter the directory it just created.

Getting Started

You will have the following directory structure. Here is an explanation of all the important files.

.├── .github            # Contains workflows for running tests, PHP Stan and Code Style Fixers.├── src                # Your application's source files├── tests              # Automated tests (PEST)├── docker-compose.yml # This file will be used to deploy your application to production.└── Dockerfile         # This file allows you to customise the production image and add extra PHP extensions.

You may choose to keep the tests and the.github folder. If you don't use/need code style or PHP stan these can be uninstalled by removing them fromcomposer.json and runningcomposer update.

Building your SSH TUI (Terminal UI)

Now you have a great baseline for building your SSH TUI, go build something awesome.

In thesrc directory, you will find anindex.php file. This file is the entry point for your SSH app. You can choose to do anything you like with this. This template has pre-installedlaravel/prompts andjoetannenbaum/chewie to demonstrate how it can be used.

You may also consider installingnunomaduro/termwind which is a fantastic tool that lets you write HTML in the terminal.

Here are some useful resources for getting started:

Running the script during development

During development, it's recommended to run the script with the following command:

php ./src/index.php

Running the SSH server

Obviously, you're going to want to see the SSH server right before your eyes! You can do this by running the following command.

composer run-dev

This will run the SSH server in your terminal window. In another window, you should be able to run the following command

ssh localhost -p 2201

Installing additional PHP extensions

You may need to add additional extensions to get your server to work in production. You can dothis by modifying theDockerfile in the root directory. The base image runs Alpine Linux andhas a few common PHP extensions, however you can add more here if you need.

RUN apk add php-redis

Deploying to production

Requirements

Your server must have Docker installed.

Configuring Everything

Firstly, copy thedocker-compose.yml file todocker-compose.prod.yml and open it up. Inside here, change the ports from2201:22 to22:22. This will mean on production your app will run on the regular SSH port.You may also need to define the platform to build on.

Changing the default OpenSSH port on your server

Next, we're going to need to change the OpenSSH port on your server to something other than22, because that's what our application will be running on. On your server run:

sudo nano /etc/ssh/sshd_config

Look for the line that starts with Port. It may be commented out, go ahead and uncomment it. Change it to whatever number you'd like (and is available), for example 2201. Then restart the service with the following command

sudo service ssh restart

Now you want to update your firewall rules to ensure that the port is not blocked. Depending on which firewall you are using, this may be different for you. For ufw:

sudo ufw allow 2201/tcp

Caution

Important: Before you log out of the server or close that terminal tab, open a new terminal and make sure you can access your server via SSH. If it doesn't work you will be locked out of your server, so remaining logged in in the original tab will allow you to remedy any issues.

Next time you need to SSH into your server you can specify the custom port.

ssh user@your-server -p 2201

If you're usingLaravel Forge on this server, make sure you change the port that Forge connects to the server with under Settings > Server Settings > SSH Port.

Clone your project onto the server

Make sure you commit yourdocker-compose.prod.yml file and then deploy the whole project to your server.

Deploy time!

Now you can run the following command on your server. Run the following./deploy.sh script.

If it is the first time running the above deploy script, you may need to make it executable.

chmod u+x ./deploy.sh
./deploy.sh

If you are using Laravel Forge, you can add this to your deployment script to automatically update the SSH app.

It's completely normal for this command to exit after running. If you want to check that the Docker container is running, you can run the following command

docker ps

And that's it! ✨

Now you can SSH into your serverssh your-server-ip and you should see your awesome PHP application! You can even point your DNS to the server IP and use that too if you like.

ssh your-server-ip

Official Docker Repository

This project uses thesammyjo20/ssh-php Dockerfile. You can see this Dockerfile and contribute by following the link below.

https://github.com/sammyjo20/ssh-php-docker

Support

If you found this project useful, please consider sponsoring me either one time or a regular sponsor. This helps pay me for my time maintaining and keeping projects like these active. You can sponsor me on GitHub byclicking here.

Credits

Security

If you find any security related issues, please send an email to29132017+Sammyjo20@users.noreply.github.com

About

The ridiculously simple starting point for building PHP SSH apps! 🔥

Topics

Resources

Stars

Watchers

Forks


[8]ページ先頭

©2009-2025 Movatter.jp