-
Published Question
Hi all,
i´m running a proxmox node with multiple VMs and containers. What i want to do is to setup a new container with a nextcloud installation. Im already running a VM with public IP address and nginx. This VM alrea...
0
•
•
By
r0g
Nginx
Debian
-
Published Answer
I already tried try_files $uri $uri/ =404; and its not working. The skript is shown as plain text while calling the URL…
…
•
By
r0g
-
Published Answer
@hansen Thats the output:
root@host01:/etc/nginx/sites-available# ls -ls /etc/nginx/sites-available/
total 24
4 -rw-r--r-...
•
By
r0g
-
Published Answer
Hi @hansen
no i´m running nginx on a dedicated root server. Thank you i´ll try that.
•
By
r0g
-
Published Question
Hi,
i just moved my dyndns service from my apache2 server to my new nginx machine.
While the service was working good on apache it didn´t on nginx.
The Fritzbox connects to my dyndns service via this link
http://dyn...
5
•
•
By
r0g
Nginx
Apache
DNS
Debian
-
Published Answer
Thank you! Without ipv6only=on its working
•
By
r0g
-
Published Question
Hi,
i want to run two wordpress websites on one nginx server. Here is my config:
```
server {
listen 80 defaultserver;
listen [::]:80 defaultserver ipv6only=on;
root /var/www/mywebsite1;
index index.php index....
Accepted Answer:
@r0g
Anytime new configuration changes are made or added, you'll need to restart or reload NGINX.
service nginx restart
or
service nginx reload
As a general note, the ipv6only=on directive can be removed from bot...
3
•
•
By
r0g
Nginx
WordPress
Debian
-
Published Answer
yes thats it ! Thank you
•
By
r0g
-
Published Question
Hey,
i just moved a working wordpress installation from my vserver to a newer server. I already moved the database and the whole directory to my new server.
While my mainpage is working fine all subsites are getting "...
Accepted Answer:
Hi @r0g
Change this
try_files $uri $uri/ =404;
to this
try_files $uri $uri/ /index.php?$args;
Then restart Nginx with sudo service nginx restart.
2
•
•
By
r0g
Nginx
WordPress
Debian