Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 17 matches
- Tue Nov 10, 2015 5:25 pm
- Forum: Database Server
- Topic: [SOLVED] ADD PGSQL Failed
- Replies: 3
- Views: 12292
Re: ADD PGSQL Failed
Thanks .I add success!skurudo wrote:It's variables prob, not script:orCode: Select all
export VESTA=/usr/local/vesta/
viewtopic.php?uid=17&f=16&t=5075&start=0#p15173
- Tue Nov 10, 2015 8:43 am
- Forum: Database Server
- Topic: [SOLVED] ADD PGSQL Failed
- Replies: 3
- Views: 12292
[SOLVED] ADD PGSQL Failed
Error Report is
[root@LECLOUD ~]# v-add-database-host pgsql localhost postgres pgp4sw0rd
/usr/local/vesta/bin/v-add-database-host: line 26: /func/main.sh: No such file or directory
/usr/local/vesta/bin/v-add-database-host: line 27: /func/db.sh: No such file or directory
/usr/local/vesta/bin/v-add ...
[root@LECLOUD ~]# v-add-database-host pgsql localhost postgres pgp4sw0rd
/usr/local/vesta/bin/v-add-database-host: line 26: /func/main.sh: No such file or directory
/usr/local/vesta/bin/v-add-database-host: line 27: /func/db.sh: No such file or directory
/usr/local/vesta/bin/v-add ...
- Sun May 17, 2015 5:06 am
- Forum: General Discussion
- Topic: Mysql stop after reboot vps
- Replies: 13
- Views: 14435
Re: Mysql stop after reboot vps
Why Not Use Cat ?
Code: Select all
cat /var/log/mysql.log
- Mon Apr 27, 2015 4:27 pm
- Forum: Web Server
- Topic: 414 Request-URI Too Large
- Replies: 4
- Views: 12046
Re: 414 Request-URI Too Large
Hi brothers,
I'm having strange kind of trouble on one of my url which is very long approx 19,767 characters long & 10kb in size .. let me explain you guys.
I was getting error of :
414 Request URI Too Large
nginx
I google and found out that by editing and increase the value of " Client ...
I'm having strange kind of trouble on one of my url which is very long approx 19,767 characters long & 10kb in size .. let me explain you guys.
I was getting error of :
414 Request URI Too Large
nginx
I google and found out that by editing and increase the value of " Client ...
- Sun Apr 26, 2015 7:47 pm
- Forum: Web Server
- Topic: HHVM template research thread
- Replies: 3
- Views: 7960
- Sun Apr 26, 2015 7:42 pm
- Forum: Web Server
- Topic: How to protect against HTPP Flood?
- Replies: 12
- Views: 15683
Re: How to protect against HTPP Flood?
I think MayBe You Need This http://nginx.org/en/docs/http/ngx_http_ ... odule.html
- Sat Apr 25, 2015 2:29 pm
- Forum: Web Server
- Topic: Translated: 403 Forbidden nginx in imagevue gallery
- Replies: 12
- Views: 15786
Re: Translated: 403 Forbidden nginx in imagevue gallery
Deleted the second user with 2 domains.
Created the user with another name and domains (the same).
Uploaded clean fresh imagevue gallery.
Added buffers to nginx config.
Result the same:
http://ebru-art.com.ua/iv-admin/
2015/04/25 17:15:45 [crit] 8336#0: *1 openat() "/home/ange/web/ebru-art ...
Created the user with another name and domains (the same).
Uploaded clean fresh imagevue gallery.
Added buffers to nginx config.
Result the same:
http://ebru-art.com.ua/iv-admin/
2015/04/25 17:15:45 [crit] 8336#0: *1 openat() "/home/ange/web/ebru-art ...
- Sat Apr 25, 2015 1:28 pm
- Forum: Web Server
- Topic: Translated: 403 Forbidden nginx in imagevue gallery
- Replies: 12
- Views: 15786
Re: Translated: 403 Forbidden nginx in imagevue gallery
To nginx.conf added:
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
and it helped! Don't know why and what the meaning is.
And why the problem appeared?
And why are these settings not set up by default?
The proxy_buffer_size is set Nginx Cache Area Quota
The ...
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
and it helped! Don't know why and what the meaning is.
And why the problem appeared?
And why are these settings not set up by default?
The proxy_buffer_size is set Nginx Cache Area Quota
The ...
- Sun Apr 19, 2015 12:21 am
- Forum: Web Server
- Topic: Translated: 403 Forbidden nginx in imagevue gallery
- Replies: 12
- Views: 15786
Re: Translated: 403 Forbidden nginx in imagevue gallery
Hello ,I only find imagevue.x2.8.10.2
and deploy it .
There is my Code
File
[root@apexnetwork public_html]# ll
total 8492
-rw-r--r-- 1 www root 102 Aug 10 2013 Adobe??+??-??.url
drwxr-xr-x 10 www root 4096 Apr 19 08:13 content
-rw-r--r-- 1 www root 1638 Jun 15 2013 favicon.png
-rw-r--r-- 1 www ...
and deploy it .
There is my Code
File
[root@apexnetwork public_html]# ll
total 8492
-rw-r--r-- 1 www root 102 Aug 10 2013 Adobe??+??-??.url
drwxr-xr-x 10 www root 4096 Apr 19 08:13 content
-rw-r--r-- 1 www root 1638 Jun 15 2013 favicon.png
-rw-r--r-- 1 www ...
- Sun Apr 19, 2015 12:05 am
- Forum: Web Server
- Topic: How to forbid access to files server wide via nginx template
- Replies: 2
- Views: 3853
Re: How to forbid access to files server wide via nginx temp
I think you shou do it at your Personal Nginx.conf .Location at /home/username/conf/web/nginx.conf
you can add directory on it .
may be place it before other localtion code.
Code: Select all
location =/2.php{
return 404;
}
may be place it before other localtion code.