mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-02 15:59:22 +01:00
Mikaela Suomalainen
f74a76250b
I didn't ever try Manjaro outside of Virtualbox and I have learned that Manjaro is not good. I am currently using Antergos which is Arch + one custom repo, so I feel I can rename to Arch.
15 lines
367 B
Markdown
15 lines
367 B
Markdown
Useful nginx files that I will probably need and which I will forget if I
|
|
cannot read them from here.
|
|
|
|
## Arch
|
|
|
|
Remove the default server block and add to http block:
|
|
|
|
```
|
|
include /etc/nginx/conf.d/*.conf;
|
|
include /etc/nginx/sites-enabled/*;
|
|
```
|
|
|
|
PHP: todo. It has something to do with `php-fpm.sock` instead of
|
|
`php5-fpm.sock`, but that doesn't appear to be enough.
|