Add Dockerfile, docker-compose.yaml and NGINX configuration.

This commit is contained in:
Ahwx 2023-05-20 13:27:36 +02:00
parent d9a0d58b67
commit 1fb959e3ce
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,7 @@
version: '3.3'
services:
pinternet:
ports:
- '8015:8009'
container_name: pinternet
image: 'pinternet:latest'

View file

@ -6,6 +6,6 @@ server {
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php-fpm.sock;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
}