mirror of
https://github.com/fernwerker/ownDynDNS.git
synced 2025-07-11 06:38:02 +02:00
13 lines
341 B
Text
13 lines
341 B
Text
|
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;
|
||
|
}
|
||
|
}
|