mirror of
https://github.com/fernwerker/ownDynDNS.git
synced 2025-07-13 07:05:43 +02:00
add docker functionality
This commit is contained in:
parent
058a32533b
commit
28f384ee92
10 changed files with 46 additions and 0 deletions
13
nginx/default.conf
Normal file
13
nginx/default.conf
Normal file
|
@ -0,0 +1,13 @@
|
|||
server {
|
||||
listen 0.0.0.0:80;
|
||||
root /var/www/html;
|
||||
location / {
|
||||
return 302 https://github.com/NiiWiiCamo/ownDynDNS;
|
||||
}
|
||||
location ~ \.php$ {
|
||||
include fastcgi_params;
|
||||
fastcgi_pass php:9000;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue