<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://prod.jnet.julianscorner.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://prod.jnet.julianscorner.com/feed.php">
        <title>Julian&#039;s Notebook - linux:nginx:app</title>
        <description></description>
        <link>https://prod.jnet.julianscorner.com/</link>
        <image rdf:resource="https://prod.jnet.julianscorner.com/_media/wiki/dokuwiki-128.png" />
       <dc:date>2026-04-17T13:32:40+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://prod.jnet.julianscorner.com/linux/nginx/app/netcore"/>
                <rdf:li rdf:resource="https://prod.jnet.julianscorner.com/linux/nginx/app/php"/>
                <rdf:li rdf:resource="https://prod.jnet.julianscorner.com/linux/nginx/app/start"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://prod.jnet.julianscorner.com/_media/wiki/dokuwiki-128.png">
        <title>Julian's Notebook</title>
        <link>https://prod.jnet.julianscorner.com/</link>
        <url>https://prod.jnet.julianscorner.com/_media/wiki/dokuwiki-128.png</url>
    </image>
    <item rdf:about="https://prod.jnet.julianscorner.com/linux/nginx/app/netcore">
        <dc:format>text/html</dc:format>
        <dc:date>2023-09-18T20:00:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>.Net Core ASP.Net</title>
        <link>https://prod.jnet.julianscorner.com/linux/nginx/app/netcore</link>
        <description>.Net Core ASP.Net

First, install Install .Net Core

Afterwards, Install Nginx


sudo apt install nginx -y



cat &gt; /tmp/dotnet &lt;&lt; EOF
server {
    listen 80;
    location / {
        proxy_pass http://localhost:5000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade \$http_upgrade;
        proxy_set_header Connection keep-alive;
        proxy_set_header Host \$host;
        proxy_cache_bypass \$http_upgrade;
    }
}
EOF

sudo mv /tmp/dotnet /etc/nginx/sites-available/

sudo ln -s…</description>
    </item>
    <item rdf:about="https://prod.jnet.julianscorner.com/linux/nginx/app/php">
        <dc:format>text/html</dc:format>
        <dc:date>2023-09-18T20:00:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>PHP</title>
        <link>https://prod.jnet.julianscorner.com/linux/nginx/app/php</link>
        <description>PHP

Unfortunately, PHP and FPM under Ubuntu use the version of PHP installed to name the UNIX socket that NGINX will use to communicate with PHP so depending on the version of Ubuntu installed, the name will be different:


# Ubuntu 16.04 LTS
VERSION=7.0

# Ubuntu 18.04 LTS
VERSION=7.2</description>
    </item>
    <item rdf:about="https://prod.jnet.julianscorner.com/linux/nginx/app/start">
        <dc:format>text/html</dc:format>
        <dc:date>2023-09-18T20:00:11+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Application Engines</title>
        <link>https://prod.jnet.julianscorner.com/linux/nginx/app/start</link>
        <description>Application Engines



	* .Net Core ASP.Net
	* PHP</description>
    </item>
</rdf:RDF>
