mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
[php] aurweb.spawn avoid permission denied when running as user
Signed-off-by: Leonidas Spyropoulos <artafinde@gmail.com>
This commit is contained in:
parent
dbbafc15fa
commit
c3a29171cd
1 changed files with 5 additions and 0 deletions
|
@ -58,6 +58,11 @@ def generate_nginx_config():
|
||||||
pid {os.path.join(temporary_dir, "nginx.pid")};
|
pid {os.path.join(temporary_dir, "nginx.pid")};
|
||||||
http {{
|
http {{
|
||||||
access_log /dev/stdout;
|
access_log /dev/stdout;
|
||||||
|
client_body_temp_path {os.path.join(temporary_dir, "client_body")};
|
||||||
|
proxy_temp_path {os.path.join(temporary_dir, "proxy")};
|
||||||
|
fastcgi_temp_path {os.path.join(temporary_dir, "fastcgi")}1 2;
|
||||||
|
uwsgi_temp_path {os.path.join(temporary_dir, "uwsgi")};
|
||||||
|
scgi_temp_path {os.path.join(temporary_dir, "scgi")};
|
||||||
server {{
|
server {{
|
||||||
listen {aur_location_parts.netloc};
|
listen {aur_location_parts.netloc};
|
||||||
location / {{
|
location / {{
|
||||||
|
|
Loading…
Add table
Reference in a new issue