Questions tagged [amazon-lightsail]

Virtual Private Server (VPS) platform from Amazon Web Services

Amazon Lightsail is a simplified and minimalistic Virtual Private Server (VPS) platform, part of the Amazon Web Sevices infrastructure.

NOTE: Since there are a number of OS options available on Lightsail, it will help people answer your question if you indicate what blueprint you are using.

98 questions
1
vote
1 answer

Does AWS Lightsail block wireguard?

For a long time now I had an AWS Lightsail VPS serving as a wireguard gateway to my home server. Since recently connection to the Lightsail instance via wireguard is no longer possible. When I took a look with SSH I got $> sudo wg-quick up wg0 [#]…
andrsmllr
  • 121
  • 4
1
vote
1 answer

SSL configuration - Lightsail

Having trouble getting SSL working on Amazon Lightsail using let's encrypt (certbot --apache) Lightsail image Centos7 Added Apache2 note: (example.com, subdomain.example.com are not my domains, I'm anonymizing them) These are the troubleshooting…
Philippe
  • 109
  • 5
1
vote
0 answers

AWS Web Application Firewall for all AWS Lightsail Instances

I have CloudFlare for domains that point to AWS instances. I set up a CloudFlare firewall rule to block traffic by country, where I manually included embargoed countries. AWS has the Web Application Firewall that can do the same: AWS WAF provides…
miguelmorin
  • 249
  • 1
  • 5
  • 13
1
vote
2 answers

SSL invalid on Lightsail Bitnami Wordpress Multisites after new instance made from snapshot

We'll likely need to upgrade a Lightsail Bitnami WordPress Multisite instance in the future, so I'm testing doing it. After I take a snapshot and then create a new, lager instance from it, then switch the static IP over to it, then the sites fail to…
Ralpharama
  • 113
  • 4
1
vote
1 answer

"Access Denied" when trying to access AWS Lightsail database

I'm trying to connect to my AWS Lightsail database instance with Navicat Premium 15.0.21 (newest available version at the time of posting). My database is in public mode. I copied and pasted the endpoint, username, and password straight into…
1
vote
2 answers

How to forward http to https with Lightsail Load balancer

I currently have an app built on a lightsail server. I used Amazon certificate to create SSL https with a load balancer. Under inbound traffic I have to protocols Http Enabled Https Enabled. When I go to https://app.myexample.com sure enough I get…
FabricioG
  • 167
  • 1
  • 7
1
vote
0 answers

AWS LightSail OpenVPN + ASUS RT-3200 - TLS Error: Key negotiation failed

Using https://github.com/angristan/openvpn-install i have installed openvpn on AWS Lightsail Instance (Ubuntu 18.04 LTS). My server config file is as follows: port 33434 proto udp dev tun user nobody group nogroup …
1
vote
1 answer

Can I have a SSL cert for a sub-domain in Lightsail if I already have a cert for the main domain in certificate manager?

In AWS I have a domain (lets call it www.mydomain.com) which I have a SSL cert in certificate manager and the DNS records in Route 53. In AWS Lightsail I have an instance with a loadbalancer and generated a Lightsail SSL cert for…
1
vote
1 answer

Setting up S3 to host 'wp-content' folder

If this is not the right SE to post the question, please kindly direct me to the right one. I've seen configuration of setting up S3 to host wp-content folder, what are the advantages of doing so? and possibly what are the disadvantages?
1
vote
2 answers

How to retrieve login credentials of an instance that was created from a snapshot?

Configuration: AWS Lightsail (Wordpress) Background Issue: I lost the SSH key pair of an instance Steps Taken: I created a snapshot of the instance I created a New instance from the snapshot Detached the staticIP from the old instance and…
1
vote
1 answer

What is the recommended way to configure DNS?

Not sure if this is the right SE to ask the question, if not please kindly direct me to the right SE. Brief background: I am learning VPC and started with AWS lightsail(wordpress). I just realised it doesn't come with email service and have to be…
1
vote
2 answers

How do I allow ICMP to Lightsail Instance?

I have a Lightsail instance running CentOS 7 and I would like to allow pinging to the instance from the outside. I couldn't find anything in the instance firewall settings. I have tried running the following commands inside: $ sudo iptables -A…
rhw5
  • 90
  • 1
  • 7
1
vote
1 answer

Getting error in curl command(curl: (35) error reading X.509 potentially-encrypted key file: Error in parsing.)

I am using below command curl --insecure --cert 'cert.p12:password' -X GET https://serverUrl -H 'Content-Type: application/json' curl --insecure --cert-type P12 --cert 'cert.p12:password' -X GET https://serverUrl -H 'Content-Type:…
0
votes
1 answer

How to control lightsail costs and determine source of costs

Below is a screenshot of my lightsail instance : As can see the costs have risen considerable over the past few days. Reading the billing section of https://aws.amazon.com/lightsail/faq/ I don't sections of how to pin point the reasons for this…
blue-sky
  • 109
  • 5
0
votes
1 answer

How to push code in GitHub bare repo with private / public keys

I have a server where I have a bare repo with a node.js application. I pushed the code without the node_modules and installed them directly on the Server. Heres my problem: The changes (node_modules) on the server now need to be pushed to the repo…