Posts

Showing posts from August, 2021

update apache in ubuntu

 https://launchpad.net/~ondrej/+archive/ubuntu/apache2 cd /etc/apt/sources.list.d sudo add-apt-repository ppa:ondrej/apache2 sudo apt-get update sudo apt-get install apache2 apt-get update apt-get update apt-get upgrade

cookie was disappearing in just a second

 just set file permission chown yutub5791:nogroup * and copied file using cp cmd cp home.php homeyt.php from already working home.php

split mail delivery gsuite zimbra

Image
 zmprov ma yosef@beetra.com zimbraMailTransport smtp:ASPMX.L.GOOGLE.COM:25 zmprov ma bar@example.com zimbraMailTransport smtp:mail.example.com:25 lock the account in Zimbra Apps > google workspace > gmail > Routing > add route > Apps > google workspace > settings for gmail > hosts 1) The email from Rushikesh Deshpande sent on 26 th  Aug hasn't been received in my Outlook even after final config. However, I had seen it in my inbox via webmail access. Does this mean we have lost many other emails too in this migration? ->  There will be no loss of emails you can find all your emails on zimbra webmail once you change all your outlook setting as per the latest comment all your emails will be getting downloaded.    2) The user  yosef@beetra.com  seems visible in ZImbra as well as in the GSuite; both apps. He is only one user who earlier existed with all Beetra account users on Exim mailing app. He is the user who only now wishes to avail the GSuite. Can you pl

antispam change destination

Image
  update spf record also to include the IP address of the actual mailing server "v=spf1 a mx ip4:192.227.67.74 ip4:192.227.67.75 ip4:192.227.106.139 include:spf.antispamcloud.com -all" also gmail "v=spf1 a mx ip4:192.227.67.74 ip4:192.227.67.75 ip4:192.227.106.139 include:spf.antispamcloud.com include:_spf.google.com ~all"

nginx php fpm update

apt upgrade php-fpm apt-get remove --auto-remove php7.2-fpm ln -s /lib/systemd/system/php7.1-fpm.service /lib/systemd/system/php-fpm.service ln -s /lib/systemd/system/php8.0-fpm.service /lib/systemd/system/php-fpm.service   nginx: [emerg] unknown log format "bytes" in vestacp fter some talk with the guys at freenode #nginx channel, I got into this documentation about 'log formats': http://nginx.org/en/docs/http/ngx_http_ ... ml#example CODE:  SELECT ALL log_format compression '$remote_addr - $remote_user [$time_local] ' '"$request" $status $bytes_sent ' '"$http_referer" "$http_user_agent" "$gzip_ratio"'; access_log /spool/logs/nginx-access.log compression buffer=32k; Basically we're making an alias 'compression' that can then be issued as a directive like that: CODE:  SELECT ALL access_log /spool/logs/nginx-access.log compression buffer=32k; Knowi

ca for ssl

 https://www.geocerts.com/certificate-decoder Issuer:  Sectigo RSA Domain Validation Secure Server CA https://sectigo.com/knowledge-base/detail/Sectigo-Intermediate-Certificates/kA01N000000rfBO

adding dns in named db file directly

 For Directadmin Adding a SRV record Last Modified: Apr 30, 2013, 1:58 pm SRV records provide a standard way of allowing services to use different values, and for a program to determine what those connection values are. Related Wikipedia page: http://en.wikipedia.org/wiki/SRV_record As per the Wikipedia page, the format will look like this: _service._proto.name  TTL class SRV  priority weight port target We'll use their example: _sip._tcp.example.com.  86400 IN SRV  0 5 5060 sipserver.example.com. The red portion goes onto the left side of the SRV record in DA, and the blue portion goes onto the right side (DA sets the TTL automatically for you) The  Red  portion of the contains the service, protocol, and name, in that order, separated by the period '.' character. In the above example, the values match up as follows: service:  _sip protocol: _tcp name:     example.com. priority: 0 weight:   5 port:     5060 target:   sipserver.example.com. Note that the "name" val