diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-04-24 20:29:33 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2023-04-24 20:29:33 +0200 |
commit | 3e74fa3b3f4c1069616495decb06d601526986bd (patch) | |
tree | b458bb0985c0978358479e950a53c258238039e5 /apks/firefly3/firefly3.nginx.conf | |
parent | e89c3ae528d667a63b9716653f9f926bf416f2ee (diff) | |
download | apkbuilds-3e74fa3b3f4c1069616495decb06d601526986bd.tar.gz apkbuilds-3e74fa3b3f4c1069616495decb06d601526986bd.tar.bz2 apkbuilds-3e74fa3b3f4c1069616495decb06d601526986bd.zip |
fix: Correct folder struct
Now it links the folder to the right place with the proper permission.
Diffstat (limited to 'apks/firefly3/firefly3.nginx.conf')
-rw-r--r-- | apks/firefly3/firefly3.nginx.conf | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/apks/firefly3/firefly3.nginx.conf b/apks/firefly3/firefly3.nginx.conf deleted file mode 100644 index a95ebb1..0000000 --- a/apks/firefly3/firefly3.nginx.conf +++ /dev/null @@ -1,16 +0,0 @@ -server { - listen 80; - server_name firefly.lan; - root /var/www/firefly3/public; - - location ~ \.php$ { - try_files $uri $uri/ =404; - fastcgi_split_path_info ^(.+\.php)(/.+)$; - fastcgi_pass unix:/run/php-fpm8/fpm.sock; - include fastcgi.conf; - } - - location / { - try_files $uri /index.php$is_args$args; - } -} |