Sign inSign up

archef2000/php-proxy

By archef2000

Updated over 3 years ago

Image
0

596

archef2000/php-proxy repository overview

php-proxy docker container

A multiarch container of php-proxy.

Docker Compose

version: '3.3'
services:
  php-proxy:
    container_name: php-proxy
    image: archef2000/php-proxy:latest
    environment:
      - PROXY_HTTPS=FALSE 
    ports:
      - '80:80/tcp'
    restart: on-failure

Docker run

docker run -d \
	-p 80:80/tcp \
	--restart=on-failure \
	--name php-proxy \
	-e PROXY_HTTPS=FALSE \ 
	archef2000/php-proxy:latest

Environment Variables

VariableRequiredFunctionExample
PROXY_HTTPSNoIf you use a reverse proxy with https set this to TRUE because php can't determine this and will redirect you to the http sitePROXY_HTTPS=FALSE

Port

PortProtoRequiredFunctionExample
80TCPYesphp-proxy apache2 server TCP listening port80:80/tcp

Tag summary

Content type

Image

Digest

sha256:ef6fb2929

Size

90.9 MB

Last updated

over 3 years ago

docker pull archef2000/php-proxy