Search found 5 matches
- Tue Mar 24, 2020 11:03 pm
- Forum: Mail Server
- Topic: Lots of frozen messages
- Replies: 7
- Views: 15216
Re: Lots of frozen messages
Hi I this worked for me: add the following to file /etc/fail2ban/jail.local [recidives] enabled = true logpath = /var/log/fail2ban.log port = all protocol = all maxentry = 5 bantime = 604800 ; 1 week findtime = 86400; 1 day then if there is any log files related to fail2ban I deleted it. logged into...
- Thu Feb 27, 2020 1:50 am
- Forum: Mail Server
- Topic: Exim wont send
- Replies: 3
- Views: 12665
Re: Exim wont send
What I have found especially is that when I wanted to send a mail without attachtments everything worked fine. But when I tried to send attachments with my emails I started running into problems. Roundcube would get stuck 'Sending message' prompt. I was about to give up and see if a reinstall would ...
- Fri Jan 11, 2019 8:29 pm
- Forum: Web Server
- Topic: Apache + Nginx + VueJS (Routing)
- Replies: 3
- Views: 9528
Re: Apache + Nginx + VueJS (Routing)
I found the solution. I don't know what it does, but this fixed my routing issue: I just created a .htaccess file in my /public_html/ with the following content: <ifModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{R...
- Fri Jan 11, 2019 8:11 pm
- Forum: Web Server
- Topic: Apache + Nginx + VueJS (Routing)
- Replies: 3
- Views: 9528
Re: Apache + Nginx + VueJS (Routing)
Vue.js is a javascript framework to build single page web applications with. It has its own router which handles the http requests to the front-end. On my local machine I am developing with npm and all the basic webpack configurations. I think I will have to find a way to make all urls redirect to /...
- Fri Jan 11, 2019 6:03 pm
- Forum: Web Server
- Topic: Apache + Nginx + VueJS (Routing)
- Replies: 3
- Views: 9528
Apache + Nginx + VueJS (Routing)
Hello guys, I hope somebody can help me with my problem. I have had some issues with email roundcube, dovecot and phpmyadmin. I solved them all and running into my next issue now. I have built my finished Vue JS app into a /static/ folder and index.html. When I upload the files to public_html the la...