mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Fix errors in Arch config file
This commit is contained in:
parent
3eab5aad5d
commit
e2b182ebe6
3 changed files with 7 additions and 6 deletions
7
dist/arch/PKGBUILD
vendored
7
dist/arch/PKGBUILD
vendored
|
@ -1,4 +1,3 @@
|
|||
_repopath=`dirname $(dirname $(pwd))`
|
||||
pkgname="arsse"
|
||||
pkgver=0.9.1.r10.7abdf05
|
||||
pkgrel=1
|
||||
|
@ -11,7 +10,9 @@ groups=()
|
|||
depends=()
|
||||
makedepends=("git" "php" "php-intl" "composer")
|
||||
checkdepends=()
|
||||
optdepends=("php-pgsql: PostgreSQL database support")
|
||||
optdepends=("php-pgsql: PostgreSQL database support"
|
||||
"nginx: HTTP server"
|
||||
"apache: HTTP server")
|
||||
provides=()
|
||||
conflicts=()
|
||||
replaces=()
|
||||
|
@ -19,7 +20,7 @@ backup=("etc/webapps/arsse/config.php" "etc/php/php-fpm.d/arsse.conf")
|
|||
options=()
|
||||
install=
|
||||
changelog=
|
||||
source=("git+file://$_repopath")
|
||||
source=("git+file://$(dirname $(dirname $(pwd)))")
|
||||
noextract=()
|
||||
md5sums=("SKIP")
|
||||
|
||||
|
|
4
dist/arch/config.php
vendored
4
dist/arch/config.php
vendored
|
@ -4,5 +4,5 @@
|
|||
# for possible configuration parameters
|
||||
|
||||
return [
|
||||
'dbSQLiteFile' => "/usr/lib/arsse/arsse.db",
|
||||
];
|
||||
'dbSQLite3File' => "/var/lib/arsse/arsse.db",
|
||||
];
|
||||
|
|
2
dist/arch/nginx/arsse.conf
vendored
2
dist/arch/nginx/arsse.conf
vendored
|
@ -1,4 +1,4 @@
|
|||
root /usr/share/webapps/arsse/www; # adjust according to your installation path
|
||||
root /usr/share/webapps/arsse/www;
|
||||
|
||||
location @arsse {
|
||||
# HTTP authentication may be enabled for this location, though this may impact some features
|
||||
|
|
Loading…
Reference in a new issue