Skip to content

Commit 459e733

Browse files
authored
Merge pull request #259670 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents b1eb534 + 637d31a commit 459e733

File tree

3 files changed

+52
-25
lines changed

3 files changed

+52
-25
lines changed

articles/communication-services/concepts/service-limits.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ Sending a high volume of messages has a set of limitations on the number of emai
9999
|Total email request size (including attachments) |10 MB |
100100

101101
### Action to take
102-
This sandbox setup is designed to help developers begin building the application. Once the application is ready for production, you can gradually request to increase the sending volume. If you need to send more messages than the rate limits allow, submit a support request to raise your desired email sending limit. The reviewing team will consider your overall sender reputation, which includes factors such as your email delivery failure rates, your domain reputation, and reports of spam and abuse, when determining approval status.
102+
This sandbox setup is to help developers start building the application. Once you have established a sender reputation by sending mails, you can request to increase the sending volume limits. Submit a [support request](https://azure.microsoft.com/support/create-ticket/) to raise your desired email sending limit if you require sending a volume of messages exceeding the rate limits. Email quota increase requests are not automatically approved. The reviewing team will consider your overall sender reputation, which includes factors such as your email delivery failure rates, your domain reputation, and reports of spam and abuse when determining approval status.
103+
104+
> [!NOTE]
105+
> Email quota increase requests may take up to 72 hours to be evaluated and approved, especially for requests that come in on Friday afernoon.
103106
104107
## Chat
105108

articles/mysql/flexible-server/tutorial-php-database-app.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ When you're finished, you can delete all of the resources from your Azure subscr
140140
## Frequently asked questions
141141
142142
- [How much does this setup cost?](#how-much-does-this-setup-cost)
143-
- [How do I connect to the MySQL database that's secured behind the virtual network with other tools?](#how-do-i-connect-to-the-mysql-database-thats-secured-behind-the-virtual-network-with-other-tools)
143+
- [How do I connect to a MySQL database that's secured behind a virtual network?](#how-do-i-connect-to-a-mysql-database-thats-secured-behind-a-virtual-network)
144144
- [How does local app development work with GitHub Actions?](#how-does-local-app-development-work-with-github-actions)
145145
- [Why is the GitHub Actions deployment so slow?](#why-is-the-github-actions-deployment-so-slow)
146146
@@ -153,11 +153,26 @@ Pricing for the create resources is as follows:
153153
- The virtual network doesn't incur a charge unless you configure extra functionality, such as peering. See [Azure Virtual Network pricing](https://azure.microsoft.com/pricing/details/virtual-network/).
154154
- The private DNS zone incurs a small charge. See [Azure DNS pricing](https://azure.microsoft.com/pricing/details/dns/).
155155
156-
#### How do I connect to the MySQL database that's secured behind the virtual network with other tools?
157156
158-
- For basic access from a commmand-line tool, you can run `mysql` from the app's SSH terminal.
159-
- To connect from a desktop tool like MySQL Workbench, your machine must be within the virtual network. For example, it could be an Azure VM that's connected to one of the subnets, or a machine in an on-premises network that has a [site-to-site VPN](../../vpn-gateway/vpn-gateway-about-vpngateways.md) connection with the Azure virtual network.
160-
- You can also [integrate Azure Cloud Shell](../../cloud-shell/private-vnet.md) with the virtual network.
157+
### How do I connect to a MySQL database that's secured behind a virtual network?
158+
159+
To connect to a MySQL database, you can use several methods based on the tools and environments at your disposal:
160+
161+
- **Command-line tool access**:
162+
- Use the `mysql` command from the app's SSH terminal for basic access.
163+
- **Desktop tools (for example, MySQL Workbench)**:
164+
- **Using SSH tunneling with Azure CLI**:
165+
- Create an [SSH session](../../app-service/configure-linux-open-ssh-session.md#open-ssh-session-from-remote-shell) to the web app by using the Azure CLI.
166+
- Use the SSH session to tunnel the traffic to MySQL.
167+
- **Using site-to-site VPN or Azure VM**:
168+
- Your machine must be part of the virtual network.
169+
- Consider using:
170+
- An Azure VM linked to one of the subnets.
171+
- A machine in an on-premises network that has a [site-to-site VPN connection](../../vpn-gateway/vpn-gateway-about-vpngateways.md) to the Azure virtual network.
172+
- **Azure Cloud Shell integration**:
173+
- [Integrate Azure Cloud Shell](../../cloud-shell/private-vnet.md) with the virtual network for direct access.
174+
175+
161176
162177
#### How does local app development work with GitHub Actions?
163178

0 commit comments

Comments
 (0)