Skip to main content

Posts

Showing posts from August, 2018

easy to make blog mobile application in andriod and iphone app

easy to make blog mobile application in andriod and iphone app for a blog, news, etc make easily mobile application. wordpress is open source platform to make blog,news, website easily. for mobile application you need a API with Data feed this both feature prebuilt in wordpress website option 1 : using fees you need to enable a wordrpess feed from a wordpress admin site. settings -> reading - Blog pages show at most posts Syndication feeds show the most recent items For each article in a feed, show For each article in a feed, show Full text Summary Search Engine Visibility Search Engine Visibility Discourage search engines from indexing this site It is up to search engines to honor this request.     test feed are working - > yoursite.com/feed option : 2 using json api after your server ip - or site address wp-json/wp/v2/posts/ now you get latest post from wordpress post page data in json format

ubuntu server free ssl with nginx server

how can create self sign. SSL certificate with Open SSL system requirements. ubunti 16.04 nginx open ssl need complete working Install SSL in NGINX you need correct working nginx sites. - create a SSL directory $sudo mkdir /etc/nginx/ssl - install open SSL completely. $sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/nginx/ssl/nginx.key -out /etc/nginx/ssl/nginx.crt - goto nginx sites configuration $cd /etc/nginx/sites-available $sudo nano default -add SSL crt file in NGINX configuration file. server_name _; ssl_certificate /etc/nginx/ssl/nginx.crt; ssl_certificate_key /etc/nginx/ssl/nginx.key; - allow to connect https server. Removed comments #. # SSL configuration # listen 443 ssl default_server; listen [::]:443 ssl default_server; ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx configuration files in order to fully unleash the power of Ng