Browse Source

Fix errors in Arch config file

rpm
J. King 3 years ago
parent
commit
e2b182ebe6
  1. 7
      dist/arch/PKGBUILD
  2. 4
      dist/arch/config.php
  3. 2
      dist/arch/nginx/arsse.conf

7
dist/arch/PKGBUILD

@ -1,4 +1,3 @@
_repopath=`dirname $(dirname $(pwd))`
pkgname="arsse" pkgname="arsse"
pkgver=0.9.1.r10.7abdf05 pkgver=0.9.1.r10.7abdf05
pkgrel=1 pkgrel=1
@ -11,7 +10,9 @@ groups=()
depends=() depends=()
makedepends=("git" "php" "php-intl" "composer") makedepends=("git" "php" "php-intl" "composer")
checkdepends=() checkdepends=()
optdepends=("php-pgsql: PostgreSQL database support") optdepends=("php-pgsql: PostgreSQL database support"
"nginx: HTTP server"
"apache: HTTP server")
provides=() provides=()
conflicts=() conflicts=()
replaces=() replaces=()
@ -19,7 +20,7 @@ backup=("etc/webapps/arsse/config.php" "etc/php/php-fpm.d/arsse.conf")
options=() options=()
install= install=
changelog= changelog=
source=("git+file://$_repopath") source=("git+file://$(dirname $(dirname $(pwd)))")
noextract=() noextract=()
md5sums=("SKIP") md5sums=("SKIP")

4
dist/arch/config.php

@ -4,5 +4,5 @@
# for possible configuration parameters # for possible configuration parameters
return [ return [
'dbSQLiteFile' => "/usr/lib/arsse/arsse.db", 'dbSQLite3File' => "/var/lib/arsse/arsse.db",
]; ];

2
dist/arch/nginx/arsse.conf

@ -1,4 +1,4 @@
root /usr/share/webapps/arsse/www; # adjust according to your installation path root /usr/share/webapps/arsse/www;
location @arsse { location @arsse {
# HTTP authentication may be enabled for this location, though this may impact some features # HTTP authentication may be enabled for this location, though this may impact some features

Loading…
Cancel
Save