@Dumblob thanks for the comments, I'm working on some improvements to this setup here: https://gist.github.com/gdamjan/b85efc20e50dd401d83884376dee7a74
Search Criteria
Package Details: nextcloud-uwsgi-service 0.3-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/nextcloud-uwsgi-service.git (read-only, click to copy) |
---|---|
Package Base: | nextcloud-uwsgi-service |
Description: | run nextcloud as a DynamicUser=yes, socket activated uwsgi service |
Upstream URL: | https://aur.archlinux.org/packages/nextcloud-uwsgi-service/ |
Licenses: | MIT |
Submitter: | gdamjan |
Maintainer: | gdamjan |
Last Packager: | gdamjan |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2018-07-15 14:59 (UTC) |
Last Updated: | 2018-07-15 18:26 (UTC) |
Dependencies (4)
- nextcloud (nextcloud-gitAUR)
- nginx (nginx-nchan-gitAUR, nginx-rtmp-sergey-gitAUR, nginx-mainline-boringsslAUR, nginx-quic-openssl-hgAUR, nginx-mainline-pushstreamAUR, tengineAUR, tengine-extraAUR, freenginx-mainline-hgAUR, freenginx-mainlineAUR, angieAUR, nginx-quic-libresslAUR, nginx-mainline)
- systemd (systemd-chromiumosAUR, systemd-selinuxAUR, sysupdated-systemd-gitAUR, systemd-gitAUR, systemd-fmlAUR)
- uwsgi-plugin-php
Required by (0)
Sources (4)
Latest Comments
gdamjan commented on 2019-11-26 11:41 (UTC)
dumblob commented on 2019-11-25 11:43 (UTC) (edited on 2019-11-25 11:44 (UTC) by dumblob)
@gdamjan I'd say for this use case we could temporarily use some postinstallation hooks to sed -ziE ...
the setting 'appstoreenabled' => false
to ease the installation.
With "editing" of /etc/nginx/nginx.conf
we should bundle a functional minimal variant containing just the line include /etc/nginx/sites/*.conf;
(pacman will figure out whether it'll get installed as /etc/nginx/nginx.conf
or /etc/nginx/nginx.conf.pacnew
and the user will see what the difference is; if there is a conflict between the package nginx
and nextcloud-uwsgi-service
, then I'd just issue a warning during installation about the need to manually add include /etc/nginx/sites/*.conf;
to /etc/nginx/nginx.conf
).
The third issue (see if nextcloud can default to /var/lib/nextcloud/data
on install) could also be solvable - probably by pre-/post-install hooks.
Thoughts?
gdamjan commented on 2018-07-15 15:25 (UTC) (edited on 2018-07-20 10:24 (UTC) by gdamjan)
TODO:
- I wish I wouldn't have to edit
/etc/nginx/nginx.conf
[1] - nextcloud should not fail if the apps directory is not writable [2]
- see if nextcloud can default to
/var/lib/nextcloud/data
on install
[1] https://bugs.archlinux.org/task/59345 [2] appstoreenabled issue at https://github.com/nextcloud/server/issues/10243
gdamjan commented on 2018-07-15 15:16 (UTC) (edited on 2018-07-15 15:26 (UTC) by gdamjan)
This package runs Nextcloud as a socket[1] activated DynamicUser[2] service, using uwsgi and its php plugin. All data is stored in /var/lib/private/nextcloud
(which will be seen as /var/lib/nextcloud
from the application side), and Nextcloud is forbidden to write to any other directory.
Manual steps needed:
systemctl enable --now nextcloud.socket
Edit /etc/nginx/nginx.conf
and add:
include /etc/nginx/sites/*.conf;
Configure /etc/nginx/sites/nextcloud.conf
to your liking, especially server_name
, listen
and ssl_*
(but don't touch the other stuff)., and reload nginx (systemctl reload nginx
).
The first time you open nextcloud it'll complain about the app directories, edit /var/lib/private/nextcloud/config.php
and temporarily add:
'appstoreenabled' => false
… then reload the web page, and enter /var/lib/nextcloud/data
as a data storage directory. See [3] for how to setup a writable apps directory if you must have it, I'd suggest not to use it, though.
[1] http://0pointer.de/blog/projects/socket-activation.html man systemd.socket
[2] http://0pointer.net/blog/dynamic-users-with-systemd.html man systemd.exec
Pinned Comments
gdamjan commented on 2018-07-15 15:16 (UTC) (edited on 2018-07-15 15:26 (UTC) by gdamjan)
This package runs Nextcloud as a socket[1] activated DynamicUser[2] service, using uwsgi and its php plugin. All data is stored in
/var/lib/private/nextcloud
(which will be seen as/var/lib/nextcloud
from the application side), and Nextcloud is forbidden to write to any other directory.Manual steps needed:
Edit
/etc/nginx/nginx.conf
and add:Configure
/etc/nginx/sites/nextcloud.conf
to your liking, especiallyserver_name
,listen
andssl_*
(but don't touch the other stuff)., and reload nginx (systemctl reload nginx
).The first time you open nextcloud it'll complain about the app directories, edit
/var/lib/private/nextcloud/config.php
and temporarily add:… then reload the web page, and enter
/var/lib/nextcloud/data
as a data storage directory. See [3] for how to setup a writable apps directory if you must have it, I'd suggest not to use it, though.[1] http://0pointer.de/blog/projects/socket-activation.html man systemd.socket
[2] http://0pointer.net/blog/dynamic-users-with-systemd.html man systemd.exec
[3] https://docs.nextcloud.com/server/13/admin_manual/installation/apps_management_installation.html#using-custom-app-directories