{"id":22064,"date":"2026-06-11T12:18:21","date_gmt":"2026-06-11T12:18:21","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/"},"modified":"2026-06-11T12:18:21","modified_gmt":"2026-06-11T12:18:21","slug":"fivem-hostname-tags-server-listing-guide","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/","title":{"rendered":"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Your FiveM server is running \u2014 but nobody can find it. The server browser is the front door to every public RP community, and a handful of convars in <code>server.cfg<\/code> determine exactly what players see (and whether they see anything at all). This guide walks through every listing-related setting: <code>sv_hostname<\/code>, <code>sv_projectName<\/code>, <code>sv_projectDesc<\/code>, <code>sets tags<\/code>, <code>locale<\/code>, <code>sv_maxClients<\/code>, and the most common reasons a server disappears from the list entirely.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How the FiveM Server Browser Works<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When your server starts, it sends a heartbeat to the Cfx.re ingress service. That heartbeat registers your server in the public browser at <strong>servers.fivem.net<\/strong>. The browser then reads the metadata your server advertises \u2014 name, description, tags, locale, and player count \u2014 and displays it to players searching for servers. If any required piece of that chain is broken, your server either shows up unlabelled or does not show up at all.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The initial registration can take <strong>up to 8 minutes<\/strong> from a cold start. If you restarted the server and are not seeing it immediately, wait a few minutes before troubleshooting further.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Core Listing Convars<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">All of the settings below live in your <code>server.cfg<\/code> file. Open it in any text editor \u2014 it is usually found at the root of your server data directory.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">sv_hostname<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>sv_hostname<\/code> is the server-specific host name. It is the primary name displayed in the server browser row. Keep it readable, memorable, and consistent with your community brand. Avoid stuffing tags or descriptions into this field \u2014 those have dedicated convars below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sv_hostname \"Liberty City Roleplay | Serious RP | QBCore\"<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">sv_projectName and sv_projectDesc<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">These two convars are set with the <code>sets<\/code> command, which marks them as server information variables (info sets) that the browser reads. <strong>Both are required<\/strong> \u2014 if either is missing the server may fail to display properly in the listing.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>sv_projectName<\/strong> \u2014 your community or project name. It appears alongside the hostname in the browser list.<\/li>\n<li><strong>sv_projectDesc<\/strong> \u2014 a short sentence describing your server. It is displayed when a player expands or clicks on your server entry.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sets sv_projectName \"Liberty City Roleplay\"\nsets sv_projectDesc \"Immersive GTA V RP with custom jobs, housing, and a growing economy.\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Non-compliant or excessively long project names will be cut off in the browser. Write a clean name only \u2014 no pipe characters or tag lists here.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">sets tags<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Tags are a comma-separated list of keywords that players can use to filter servers in the browser. They are the equivalent of search metadata: choose words that accurately describe your server&#8217;s game mode, framework, and community focus.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sets tags \"roleplay, qbcore, serious-rp, economy, custom-jobs\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Common tag categories used by established communities include the framework (<code>qbcore<\/code>, <code>esx<\/code>, <code>vrp<\/code>), game mode (<code>roleplay<\/code>, <code>drifting<\/code>, <code>racing<\/code>, <code>military<\/code>), and tone (<code>serious-rp<\/code>, <code>semi-serious<\/code>, <code>casual<\/code>). Note that the default placeholder in a fresh install is <code>sets tags \"default\"<\/code> \u2014 replace it before going public.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">locale<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>locale<\/code> info set tells the browser which language your server primarily operates in. It is used for region-based filtering. The default placeholder in a new install is <code>root-AQ<\/code> \u2014 this is not a real locale and should always be replaced.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sets locale \"en-US\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Other common values: <code>fr-CA<\/code>, <code>de-DE<\/code>, <code>nl-NL<\/code>, <code>pt-BR<\/code>, <code>en-GB<\/code>. Use the standard BCP 47 language tag format.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">sv_maxClients<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This integer convar sets the maximum concurrent player count displayed in the browser. The default in a vanilla install is 48. Key limits to know:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Up to 31 players \u2014 no extra requirements.<\/li>\n<li>32 or more players \u2014 OneSync must be enabled (<code>set onesync on<\/code> or <code>set onesync legacy<\/code>).<\/li>\n<li>More than 64 players \u2014 OneSync must be set to <code>on<\/code> (legacy mode is not sufficient).<\/li>\n<li>More than 48 slots \u2014 requires a Cfx.re <strong>Element Club Argentum<\/strong> subscription or higher, linked to your license key via the Cfx.re portal.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sv_maxclients 48\nset onesync on<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">load_server_icon (optional)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You can add a custom thumbnail to your server&#8217;s browser entry. The file must be a <strong>96\u00d796 PNG<\/strong>, placed in your server data directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>load_server_icon myLogo.png<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Complete Listing Block \u2014 server.cfg Reference<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here is a clean, copy-pasteable listing block you can drop into your <code>server.cfg<\/code>. Replace every placeholder value before starting the server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>## -- Server Identity & Browser Listing --\nsv_hostname \"Liberty City Roleplay | Serious RP\"\nsets sv_projectName \"Liberty City Roleplay\"\nsets sv_projectDesc \"Immersive GTA V RP with custom jobs, housing, and a growing economy.\"\nsets tags \"roleplay, qbcore, serious-rp, economy, custom-jobs\"\nsets locale \"en-US\"\n\n## -- Capacity (32+ requires onesync) --\nsv_maxclients 48\nset onesync on\n\n## -- License (from https:\/\/portal.cfx.re) --\nsv_licenseKey \"YOUR_LICENSE_KEY_HERE\"\n\n## -- Optional: custom server icon (96x96 PNG in server root) --\n# load_server_icon myLogo.png\n\n## -- Keep this commented out to stay public in the browser --\n# sv_master1 \"\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Quick-Reference: What Each Setting Does in the Browser<\/h2>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Convar<\/th><th>Where it appears<\/th><th>Required?<\/th><th>Example value<\/th><\/tr><\/thead><tbody><tr><td><code>sv_hostname<\/code><\/td><td>Main name row in browser<\/td><td>Yes<\/td><td>&#8220;Liberty City Roleplay | Serious RP&#8221;<\/td><\/tr><tr><td><code>sets sv_projectName<\/code><\/td><td>Project name alongside hostname<\/td><td>Yes<\/td><td>&#8220;Liberty City Roleplay&#8221;<\/td><\/tr><tr><td><code>sets sv_projectDesc<\/code><\/td><td>Expanded server detail panel<\/td><td>Yes<\/td><td>&#8220;Immersive GTA V RP&#8230;&#8221;<\/td><\/tr><tr><td><code>sets tags<\/code><\/td><td>Browser tag filter<\/td><td>Recommended<\/td><td>&#8220;roleplay, qbcore, serious-rp&#8221;<\/td><\/tr><tr><td><code>sets locale<\/code><\/td><td>Language\/region filter<\/td><td>Recommended<\/td><td>&#8220;en-US&#8221;<\/td><\/tr><tr><td><code>sv_maxclients<\/code><\/td><td>Slot count shown in browser<\/td><td>Yes<\/td><td>48<\/td><\/tr><tr><td><code>load_server_icon<\/code><\/td><td>Thumbnail next to server name<\/td><td>No<\/td><td>myLogo.png (96\u00d796 PNG)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Why Is My Server Not Showing in the List?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is the most common question from new server operators. Work through this checklist in order:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Wait up to 8 minutes.<\/strong> The first heartbeat registration after a cold start takes time. Do not restart the server while waiting \u2014 that resets the timer.<\/li>\n<li><strong>Check port 30120 is open.<\/strong> Both TCP and UDP on port 30120 must be reachable from the internet. Test at <a href=\"https:\/\/canyouseeme.org\" rel=\"noopener\">canyouseeme.org<\/a>. This is the most common cause of a server not appearing.<\/li>\n<li><strong>Verify sv_projectName and sv_projectDesc are set.<\/strong> Missing either of these variables causes the server to fail its listing check.<\/li>\n<li><strong>Check sv_master1 is commented out.<\/strong> If the line <code>sv_master1 \"\"<\/code> is uncommented in your server.cfg, the server is marked private and the connect button is disabled in the browser. It should have a <code>#<\/code> prefix.<\/li>\n<li><strong>Test your info.json endpoint.<\/strong> In a browser, visit <code>http:\/\/YOUR_IP:30120\/info.json<\/code>. If you see a JSON response with your server details, the server is reachable. If the page times out, the problem is network\/firewall.<\/li>\n<li><strong>Check for NAT\/gateway masking.<\/strong> If your server is behind a router or NAT that rewrites UDP source ports, the Cfx.re ingress may not be able to register it. Use a server with a direct public IP, or configure your router&#8217;s NAT rules accordingly.<\/li>\n<li><strong>Confirm your license key is valid.<\/strong> An invalid or missing <code>sv_licenseKey<\/code> will prevent proper registration. Keys are issued at <a href=\"https:\/\/portal.cfx.re\" rel=\"noopener\">portal.cfx.re<\/a>.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Making Your Server Private<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you want a whitelist-only or development server that does not appear in the public browser, uncomment the <code>sv_master1<\/code> line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sv_master1 \"\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note from the official docs: this marks the server as private and disables the public connect button, but heartbeats are still sent to the default ingress \u2014 this cannot be used to fully suppress all registration activity.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Next Steps After Getting Listed<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Once your server appears correctly, you can focus on player experience. If you are building out an RP framework, our <a href=\"https:\/\/xgamingserver.com\/blog\/fivem-ox-target-setup-guide\/\">ox_target setup guide<\/a> and <a href=\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\">server backup guide<\/a> are natural next reads. For the full admin toolkit \u2014 bans, kicks, and permission management \u2014 see our <a href=\"https:\/\/xgamingserver.com\/blog\/fivem-ban-kick-management-guide\/\">FiveM ban and kick management guide<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are still standing up the server infrastructure itself, the <a href=\"https:\/\/xgamingserver.com\/docs\/fivem\">FiveM server documentation<\/a> covers txAdmin setup, resource loading, and initial configuration in detail. Or, if you would rather skip the infrastructure work and go straight to building your community, take a look at <a href=\"https:\/\/xgamingserver.com\/five-m-server-hosting\">managed FiveM server hosting<\/a> \u2014 fully configured instances with txAdmin pre-installed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Do I need a Cfx.re account to get my server listed?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. You need a valid <code>sv_licenseKey<\/code> in your <code>server.cfg<\/code>, which is generated at <a href=\"https:\/\/portal.cfx.re\" rel=\"noopener\">portal.cfx.re<\/a> after linking your Cfx.re account. Without a license key the server will either fail to start or fail to register in the browser. The key is free for standard usage (up to 48 slots).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why does my server show in the list but players get a &#8220;server is private&#8221; error?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">This means <code>sv_master1 \"\"<\/code> is uncommented in your <code>server.cfg<\/code>. That line marks the server as private, which disables the connect button for players browsing the public list. Add a <code>#<\/code> at the start of that line so it reads <code># sv_master1 \"\"<\/code>, then restart the server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How many tags should I use, and does capitalisation matter?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There is no enforced limit, but keeping tags concise and relevant is more effective than listing dozens of keywords. Use lowercase \u2014 while the browser is not strictly case-sensitive, lowercase tags match how most players type filter queries. Separate each tag with a comma and a space: <code>sets tags \"roleplay, qbcore, economy, serious-rp\"<\/code>. Avoid duplicating words already in your <code>sv_hostname<\/code>; tags are additive metadata, not a repeat of the server name.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Your FiveM server is running \u2014 but nobody can find it. The server browser is the front door to every public RP community, and a handful of convars in server.cfg determine exactly what players see (and whether they see anything at all). This guide walks through every listing-related setting: sv_hostname, sv_projectName, sv_projectDesc, sets tags, locale, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":22049,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[142],"tags":[],"class_list":["post-22064","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-fivem"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FiveM Server Listing: Hostname, Tags &amp; Browser Setup 2026<\/title>\n<meta name=\"description\" content=\"Set sv_hostname, sv_projectName, sets tags, and locale in server.cfg so your FiveM server appears correctly in the public browser. Full 2026 guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List\" \/>\n<meta property=\"og:description\" content=\"Set sv_hostname, sv_projectName, sets tags, and locale in server.cfg so your FiveM server appears correctly in the public browser. Full 2026 guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-11T12:18:21+00:00\" \/>\n<meta name=\"author\" content=\"Hectar Carson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hectar Carson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\"},\"author\":{\"name\":\"Hectar Carson\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\"},\"headline\":\"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List\",\"datePublished\":\"2026-06-11T12:18:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\"},\"wordCount\":1271,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp\",\"articleSection\":[\"FiveM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\",\"name\":\"FiveM Server Listing: Hostname, Tags & Browser Setup 2026\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp\",\"datePublished\":\"2026-06-11T12:18:21+00:00\",\"description\":\"Set sv_hostname, sv_projectName, sets tags, and locale in server.cfg so your FiveM server appears correctly in the public browser. Full 2026 guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp\",\"width\":1920,\"height\":620},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FiveM\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/fivem\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\",\"name\":\"Hectar Carson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"caption\":\"Hectar Carson\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"FiveM Server Listing: Hostname, Tags & Browser Setup 2026","description":"Set sv_hostname, sv_projectName, sets tags, and locale in server.cfg so your FiveM server appears correctly in the public browser. Full 2026 guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/","og_locale":"en_US","og_type":"article","og_title":"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List","og_description":"Set sv_hostname, sv_projectName, sets tags, and locale in server.cfg so your FiveM server appears correctly in the public browser. Full 2026 guide.","og_url":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2026-06-11T12:18:21+00:00","author":"Hectar Carson","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Hectar Carson","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/"},"author":{"name":"Hectar Carson","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d"},"headline":"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List","datePublished":"2026-06-11T12:18:21+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/"},"wordCount":1271,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp","articleSection":["FiveM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/","url":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/","name":"FiveM Server Listing: Hostname, Tags & Browser Setup 2026","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp","datePublished":"2026-06-11T12:18:21+00:00","description":"Set sv_hostname, sv_projectName, sets tags, and locale in server.cfg so your FiveM server appears correctly in the public browser. Full 2026 guide.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp","width":1920,"height":620},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/fivem-hostname-tags-server-listing-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"FiveM","item":"https:\/\/xgamingserver.com\/blog\/category\/fivem\/"},{"@type":"ListItem","position":3,"name":"FiveM Server Listing: sv_hostname, Tags, and Getting Your Server on the List"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d","name":"Hectar Carson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","caption":"Hectar Carson"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-hero.webp","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22064","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=22064"}],"version-history":[{"count":0,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22064\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/22049"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=22064"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=22064"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=22064"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}